Radio Button Group
The radio button group is a component that makes a single selection from multiple radio button choices.The radio buttons that serve as choices are made by setting options.
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 L | String | Radio Button | label | string | Radio Button | Component label |
| 3 | Width | String | 222 | width | string | 222 | Component width |
| 4 | Height | String | 40 | height | string | 40 | 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 | Component 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 | Label input text color | ||
| 12 | Disabled | Boolean | OFF | disabled | boolean | false | Component disabled/enabled state |
| 13 | Required | Boolean | OFF | required | boolean | false | Required field setting |
| 14 | Read Only | Boolean | OFF | readOnly | boolean | false | Read-only mode |
| 15 | Visibility | Boolean | ON | visibility | boolean | true | Component show/hide |
| 16 | Scroll Bar | Boolean | OFF | scrollBar | boolean | false | Scroll bar show/hide |
| 17 | Horizontal Alignment | Selection 1.Left 2.Center 3.Right | Left | horizontalAlignment | string | left | Horizontal alignment |
| 18 | Vertical Alignment | Selection 1.Top 2.Center 3.Bottom | Top | verticalAlignment | string | top | Vertical alignment |
| 19 | Helper Text | String | helperText | string | Helper text | ||
| 20 | Direction | Selection 1.Vertical 2.Horizontal | Vertical | direction | string | vertical | Option arrangement direction |
| 21 | Options | Table format[Details 1] | [Details 1] | options | string | [Details 1] | Selection options |
| 22 | Value | String | option1 | value | string | option1 | Selected radio button data |
| 23 | Error | error | boolean | false | Error state | ||
| 24 | Change Event | Selection 1.None 2.Action 3. Detached Action | None | Event setting for value changes Detached Action became selectable in v4.1.0. | |||
| 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. Click the "Add" button to register a pair of "Label" and "Value". 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. |