Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This element The <list> tag adds a multiselect multi-select reference field to a widget for establishing connections with data tables by a custom reference. Using it, you can specify more than one reference within one field.

...

AttributeTypeMandatoryDescription
classStringNThis attribute allows defining CSS styles classes description and specifying.
conditionStringN

Specify a condition query.

Note

This attribute takes a decoded condition as a value. To decode a query condition, use server methods as recommended.


isFixedBooleanNWhen this attribute is equal to 'true', then the condition value cannot be changed.
isMandatoryBooleanNThis attribute makes a field mandatory. For this, set the attribute value to "true".
isVisibleBooleanNIf this attribute is equal to "true" (by default), then the widget is displayed; otherwise, it is not displayed.
labelStringNA field label with text information generally describing describes the field content.
modelStringYThis attribute points to the client controller controller data object.  When When the model data changes, it is automatically transferred to the data of the client script.

readOnly

BooleanN

This attribute allows to set setting a read-only status to the field. For this, set it equal to 'true'.

styleStringN

This attribute specifies the display settings (size, font, color, and etc.) of the widget elements using the CSS syntax.

tableNameStringYConnection with a table by its name.

value

ArrayN

Specify an array containing references to other fields.


Code Block
languagexml
titleList
linenumberstrue
<list label="Configuration Item" model="data.element" tableName="cmdb" isMandatory="true" condition="{data.condition}" value='[{"database_value":"","display_value":""},{"database_value":"1","display_value":"First"},{"database_value":"2","display_value":"Second"}]'></list>

...