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 L | 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 | Lock | Boolean | OFF | lock | boolean | false | When ON, the component stays fixed even when the screen is scrolled. When OFF, the component moves along with the screen scroll. Added in v4.1.0. |
| 8 | Color | String Color Picker | color | string | Checkbox color | ||
| 9 | Background Color | String Color Picker | backgroundColor | string | Background color | ||
| 10 | Label Color | String Color Picker | labelColor | string | Label text 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 mode |
| 14 | Required | Boolean | OFF | required | boolean | false | Required input setting |
| 15 | Visibility | Boolean | ON | visibility | boolean | true | Visibility state |
| 16 | Horizontal Alignment | Selection 1. Left 2. Center 3. Right | Left | horizontalAlignment | string | left | Horizontal alignment |
| 17 | Vertical Alignment | Selection 1. Top 2. Center 3. Bottom | Top | verticalAlignment | string | top | Vertical alignment |
| 18 | Scroll Bar | Boolean | OFF | scrollBar | boolean | false | Scroll bar display |
| 19 | Helper Text | String | helperText | string | Helper text | ||
| 20 | Direction | Selection 1. Vertical 2. Horizontal | Vertical | Checkbox arrangement direction | |||
| 21 | Options | Tabular[Details 1] | [Details 1] | options | array of object | [Details 1] | Checkbox options |
| 22 | Value | Selection | [“option1”] | value | string array | [“option1”] | Selected values |
| 23 | Change Event | Selection 1. None 2. Action 3. Detached Action | None | Event on value change Detached Action became selectable in v4.1.0. | |||
| 24 | Error | error | boolean | false | Error state (no dialog property) | ||
| 25 | Detached Action | Selection 1. [Detached Action ID] | detachedAction | string | Set a detached action Added in v4.1.0. |
[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. |