Checkbox Group
A checkbox group is a component that makes one or more selections from multiple checkbox options. The checkboxes to be selected are done by setting options.
Tips
Properties
UI Dialog
Item | Input value | Option | Default value |
---|---|---|---|
ID | string | automatic | |
Label | string | Checkbox Group | |
Width | string | 222 | |
Height | string | 115 | |
X | string | ||
Y | string | ||
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 |
Scrollbar | boolean | on・off | off |
Helper Text | string | ||
Direction | select | Vertical・Horizontal | vertical |
Options | table details 1 | [[“label”:“Option1”,“value”:“option1”],[“label”:“Option2”,“value”:“option2”]] | |
Value | select | [“option1”] | |
Error | - | ||
Change Event | select | NONE・ACTION | NONE |
Action
Item | Properties | Data Type | Options | Default value |
---|---|---|---|---|
ID | id | string | automatic | |
Label | label | string | Checkbox Group | |
Width | width | string | 222 | |
Height | height | string | 115 | |
X | x | string | ||
Y | y | string | ||
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 |
Scrollbar | scrollBar | boolean | true・false | false |
Helper Text | helperText | string | ||
Direction | direction | select | Vertical・Horizontal | vertical |
Options | options | array of object | [[“label”:“Option1”,“value”:“option1”],[“label”:“Option2”,“value”:“option2”]] | |
Value | value | string array | [“option1”] | |
Error | error | boolean | false | |
Change Event | changeEvent | select | NONE・ACTION | NONE |
Tips
[Details 1] Options
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.
Select | Label | Value |
---|---|---|
Checkbox | Option1 | option1 |
Checkbox | Option2 | option2 |
Event
Event name | Description |
---|---|
onchange | Occurs when a value change is made. |