Select
A select box is a component that is entered by selecting from a set of options. Multiple selections are also possible depending on property settings.
Property
| No | Item | Input Value | Default Value | Action Property | Type | Action Default Value | Description |
|---|---|---|---|---|---|---|---|
| 1 | ID | String | Auto-generated | id | string | Auto-generated | The [id] property cannot be set by actions. |
| 2 | Label | String | Select | label | string | Select | Component label |
| 3 | Width | String | 222 | width | string | 222 | Component width |
| 4 | Height | String | 55 | height | string | 55 | Component height |
| 5 | X | String | x | string | X coordinate position | ||
| 6 | Y | String | y | string | Y coordinate position | ||
| 7 | Variant | Selection 1. Outlined 2. Filled 3. Standard | Outlined | variant | string | outlined | Component style |
| 8 | Color | String Color Picker | color | string | Component color | ||
| 9 | Background Color | String Color Picker | backgroundColor | string | Background color | ||
| 10 | Label Color | String Color Picker | labelColor | string | Label color | ||
| 11 | Input Color | String Color Picker | inputColor | string | Input text color | ||
| 12 | Disabled | Boolean | OFF | disabled | boolean | false | Disabled state |
| 13 | Read Only | Boolean | OFF | readOnly | boolean | false | Read-only state |
| 14 | Required | Boolean | OFF | required | boolean | false | Required input field |
| 15 | Visibility | Boolean | ON | visibility | boolean | true | Component show/hide |
| 16 | Multiple | Boolean | OFF | multiple | boolean | false | Multiple selection enabled |
| 17 | Helper Text | String | helperText | string | Helper text | ||
| 18 | Options | Table format[Details 1] | [Details 1] | options | array of object | [Details 1] | Select box options |
| 19 | Change Event | Selection 1. None 2. Action | None | Event on value change | |||
| 20 | Value | value | string, or array of string (refer to Tips above) | Select box value | |||
| 21 | Error | error | boolean | Error state |
[Details 1] Option
The default status is registered as follows. Register a pair of "Label" and "Value" from the "ADD" button. To delete, select the check box and click the "DELETE" button.
| Selection | Label | Value |
|---|---|---|
| Checkbox | label1 | value1 |
| Checkbox | label2 | value2 |
Event
| Event name | Description |
|---|---|
| onchange | Occurs when a value change is made. |