Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

...

Use Case

Scope

Menu, Class, Modell, Property, …

TODO: Ist das das Gleiche wie “Anwendbar auf”

Aspect

Mit Properties

Beschreibung

Verwendung / Beispiel

(Extension)

Anwendbar auf

Detail, Liste, Property, Cell

Definition in

QW = Quino Web

QS = Quino Standard

Internal

???

Help

Property

PlaceholderAspect

Properties:

  • Placeholder: DynamicString

Fügt ein Placeholder bzw. Wasserzeichen zu leeren Inputs wie z.B. Textfeldern hinzu.

7da1db5c-f598-4f7d-9f41-2c05a1cce461-20241009-090451.png

Anwendbar auf Controls:

  • QuinoTextBox

  • QuinoDropdown

  • QuinoSearchEdit

  • QuinoMultiSelect

  • QuinoMultiLineRichtTextEditor

Benutzung über PropertyLinkBuilderExtensions

Code Block
languagec#
row.Add.Link(metadata.Controls.Text_Nullable)
  .Placeholder(English, "Placeholder for a text box")
  .Placeholder(German, "Platzhalter für eine Text-Box");

XML:

Code Block
languagexml
<layout name="TestPlaceholders" type="Detail" targetClass="Office">
  <propertyLink link="Name">
    <aspects>
      <placeholderAspect>
        <placeholder en-CH="What is the name?" de-CH="Was ist der Name?"></placeholder>
      </placeholderAspect>
    </aspects>
  </propertyLink>
</layout>

Property

QW

Public

Aspekte auf Klassen

TODO

Aspekte auf Properties und Layout-Elementen

...