-
Notifications
You must be signed in to change notification settings - Fork 3
Native Data List
Gabi edited this page Jun 23, 2020
·
2 revisions
Table of contents
The component has the following properties:
Property | Type | Default | Description |
---|---|---|---|
dataProvider | dataprovider | The dataprovider of the component | |
enabled | Boolean | true | Whether the component is enabled or not; blocks onAction, onDataChange events. |
styleClass | String | Style class of this component | |
tabSeq | Number | Tab sequence index of the form | |
toolTipText | String | Tooltip text shown when hovering over the component (i18n is supported) | |
valuelist | valuelist | The value list which offers the values presented | |
placeholderText | String | Text shown when no value is yet selected (i18n is supported) | |
visible | Boolean | true | Whether the component is visible or not |
The component allows to attach handlers for the following events:
Event | Parameters | Return | Description |
---|---|---|---|
onAction | event:JSEvent | Fired when the enter key is hit | |
onDataChange | oldValue:Date, newValue:Date, event:JSEvent | Boolean | Fired when the value is changed |
onFocusGained | event:JSEvent | Fired when the component gets focus | |
onFocusLost | event:JSEvent | Fired when the component loses focus |
The component offers the following API methods:
Method | Parameters | Return | Description |
---|---|---|---|
requestFocus | mustExecuteOnFocusGainedMethod:Boolean | Sets the focus to this component. |