Indicates whether an appointment picker is enabled or not enabled, and in what way.
Reference to an existing appointment picker state. This is similar to AppointmentPickerInstanceReference, but also allows for a snapshot from an appointment picker to be specified. You can take a snapshot of an appointment picker's state at any time, and e.g. load it into other appointment pickers.
In addition to values allowed by AppointmentPickerInstanceReference, may also be one of the following:
{by: "snapshot", token: "..."}
- The token of an existing snapshot. Snapshot tokens
can be created via the API function saveSnapshot
.How to change the display mode, for the message changeDisplay
.
How to change the lock mode, for the message changeLock
.
Mögliche Werte für die Request-Typen in Formularen. Sie geben an, wie ein Formular aufgerufen wurde. Auf diese
Eigenschaft wird über XFC_METADATA.requestType
zugegriffen. Einige dieser Werte sind nur für die interne
Verwendung bestimmt und sollten nicht verwendet werden.
Werte für die Arten von URLs in formcycle. Die folgenden Arten von URLs gibt es derzeit:
/formcycle
.dataquery_db
genutzt werden.ping
.Standardmäßig vordefinierte Datentypen für Texteingabefelder.
22.05.1990
.3
, 0
oder -21
.127.0.0.1
oder 10.42.42.13
.2,00
, -3,95
, 0,00
oder 897345,38
.0.03
, -99.2
oder 42
.0234995483
oder +49 351 4459654
.02349
. Prüft nicht, ob es solch eine Postleitzahl tatsächlich in Deutschland gibt.0
, 3
oder 123
.0,00
oder 2,34
.0,00
, 0
, 3,4
oder 3
.hh:mm
, z.B. 22:05
or 03:42
.http://example.com
oder https://www.james.org
.Alle Datentypen, die gültiges JSON darstellen.
Alle Felder, die gültige JSON-Felder darstellen
Alle Objekte, die gültige JSON-Objekte darstellen.
Legacy-Modell für den Dateispeicher mit allen Binärdateien aus Upload-Elementen. Der Schlüssel ist die ID des Formularelements, z. B. xi-tf-1.
Legacy-Modell mit gespeicherten Daten des Formularfeldes und den Metadaten des Formularfeldes.
Der Schlüssel kann einer der folgenden sein
_0
oder _1
. Dann ist der Wert der entsprechende Wert des Formularfeldes, der je nach
Art des Formularelements ein String, ein Array, ein Objekt usw. sein kann.Mögliche Typen für die gespeicherten Daten eines Formularfeldes.
Legacy-Modell, das die in ein Formular eingegebenen Daten darstellt, einschließlich der Werte von sich wiederholenden Formularfeldern sowie von Bildern.
Der Schlüssel kann einer der folgenden sein:
_dyn_size
, z. B. tf1_dyn_size
.
Dann ist der Wert ein Array mit den Wiederholungs-IDs, z. B. ["0", "1", "2"]
.Represents a range of LocalDate, comprised of a lower and an upper bound.
When a lower or upper end point exists, it is a closed end point, i.e. the end point is part of the range.
When a lower or upper bound is undefined
, it is an open end point with
-Infinity or +Infinity as the value, respectively.
The lower bound should not be greater than the upper bound. If it is, the range is considered empty.
If you need an open range, simply change the lower or upper bound. This is always possible since LocalDate is a discrete domain.
Eine benutzerdefinierte Callback-Funktion für das Absenden des Formulars, die über XUtil.onSubmit registriert werden kann.
$.xutil.onSubmit(() => doSomething())
Repräsentiert einen einzelnen Wert oder ein Feld von solchen Werten.
Union of types that can be interpreted as referencing to one or multiple (DOM) elements.
undefined
and null
are represent a missing element.TElement
is the element itself.TElement[]
is an array of elements.NodeListOf<TElement>
is a list of elements, returned by
querySelectorAll
.HTMLCollectionOf<TElement>
is a collection of elements, returned by
getElementsByClassName
.string
is a CSS selector for the element(s).JQuery
is a JQuery wrapper with the element(s).
Reference to an existing appointment picker. This can be one of the following:
Node
below.{by: "id", id: "..."}
- The ID of an existing appointment picker instance.Node
above.Node
above.Note that a reference may resolve to more than one appointment picker. The behavior in this case depends on where the reference is used.