Combobox
A combobox is a component where you select from options and enter. The difference from selective input is that direct input is possible. It is possible to filter options as you type, or to use the direct input value as the input value.
Properties
UI Dialog
Item | Input value | Option | Default value |
---|---|---|---|
ID | string | automatic | |
Label | string | Combo Box | |
Width | string | 222 | |
Height | string | 55 | |
X | string | ||
Y | string | ||
Variant | option | OUTLINED | |
Color | string color picker | ||
Background Color | string color picker | ||
Label Color | string color picker | ||
Input Color | string color picker | ||
Disabled | boolean | • on • off | off |
Read Only | boolean | • on • off | off |
Required | boolean | • on • off | off |
Visibility | boolean | • on • off | on |
Helper Text | string | ||
Options | table details 1 | [{“label”:“label1”,“value”:“value1”},{“label”:“label2”,“value”:“value2”}] | |
Value | string | ||
Error | - | ||
Change Event | option | NONE |
Action
Item | Properties | Data Type | Options | Default value |
---|---|---|---|---|
ID | id | string | automatic | |
Label | label | string | Combo Box | |
Width | width | string | 222 | |
Height | height | string | 55 | |
X | x | string | ||
Y | y | string | ||
Variant | variant | string | outlined | |
Color | color | string | ||
Background Color | backgroundColor | string | ||
Label Color | labelColor | string | ||
Input Color | inputColor | string | ||
Disabled | disabled | boolean | • true • false | false |
Read Only | readOnly | boolean | • true • false | false |
Required | required | boolean | • true • false | false |
Visibility | visibility | boolean | • true • false | true |
Helper Text | helperText | string | ||
Options | options | array of object | [{“label”:“label1”,“value”:“value1”},{“label”:“label2”,“value”:“value2”}] | |
Value | value | string | ||
Error | error | boolean | ||
Tips |
[Details 1] Options
The default status is registered as follows. Click the "ADD"
button to register a pair of "Label"
and "Value"
. To delete, select the check box and click the "DELETE"
button.
Option | Label | Value |
---|---|---|
Checkbox | label1 | value1 |
Checkbox | label2 | value2 |
Event
Event name | Description |
---|---|
onchange | Occurs when a value change is made. |