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 | 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 | Color | String Color Picker | color | string | Component 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 | Label input text color | ||
| 11 | Disabled | Boolean | OFF | disabled | boolean | false | Component disabled/enabled state |
| 12 | Required | Boolean | OFF | required | boolean | false | Required field setting |
| 13 | Read Only | Boolean | OFF | readOnly | boolean | false | Read-only mode |
| 14 | Visibility | Boolean | ON | visibility | boolean | true | Component show/hide |
| 15 | Scroll Bar | Boolean | OFF | scrollBar | boolean | false | Scroll bar show/hide |
| 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 | Helper Text | String | helperText | string | Helper text | ||
| 19 | Direction | Selection 1.Vertical 2.Horizontal | Vertical | direction | string | vertical | Option arrangement direction |
| 20 | Options | Table format[Details 1] | [Details 1] | options | string | [Details 1] | Selection options |
| 21 | Value | String | option1 | value | string | option1 | Selected radio button data |
| 22 | Error | error | boolean | Error state | |||
| 23 | Change Event | Selection 1.None 2.Action | None | Event setting for value changes |
[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. |