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.
Properties
| No | Item | Input Value | Default Value | Action Property | Type | Action Default Value | Description |
|---|---|---|---|---|---|---|---|
| 1 | ID | String | Auto-generated | id | string | The [id] property cannot be set by action. | |
| 2 | Label | String | Checkbox Group | label | string | Checkbox Group | Component label |
| 3 | Width | String | 222 | width | string | 222 | Component width |
| 4 | Height | String | 115 | height | string | 115 | Component height |
| 5 | X | String | x | string | X coordinate position | ||
| 6 | Y | String | y | string | Y coordinate position | ||
| 7 | Color | String Color Picker | color | string | Checkbox color | ||
| 8 | Background Color | String Color Picker | backgroundColor | string | Background color | ||
| 9 | Label Color | String Color Picker | labelColor | string | Label text color | ||
| 10 | Input Color | String Color Picker | inputColor | string | Input text color | ||
| 11 | Disabled | Boolean | OFF | disabled | boolean | false | Disabled state |
| 12 | Read Only | Boolean | OFF | readOnly | boolean | false | Read-only mode |
| 13 | Required | Boolean | OFF | required | boolean | false | Required input setting |
| 14 | Visibility | Boolean | ON | visibility | boolean | true | Visibility state |
| 15 | Horizontal Alignment | Selection 1. Left 2. Center 3. Right | Left | horizontalAlignment | string | left | Horizontal alignment |
| 16 | Vertical Alignment | Selection 1. Top 2. Center 3. Bottom | Top | verticalAlignment | string | top | Vertical alignment |
| 17 | Scroll Bar | Boolean | OFF | scrollBar | boolean | false | Scroll bar display |
| 18 | Helper Text | String | helperText | string | Helper text | ||
| 19 | Direction | Selection 1. Vertical 2. Horizontal | Vertical | Checkbox arrangement direction | |||
| 20 | Options | Tabular[Details 1] | [Details 1] | options | array of object | [Details 1] | Checkbox options |
| 21 | Value | Selection | [“option1”] | value | string array | [“option1”] | Selected values |
| 22 | Change Event | Selection 1. None 2. Action | None | Event on value change | |||
| 23 | Error | error | boolean | Error state (no dialog property) |
[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. |