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.
Tips
Properties
UI Dialog
Item | Input value | Option | Default value |
---|---|---|---|
ID | string | automatic | |
Label | string | Radio 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 | string | option1 | |
Error | - | ||
Change Event | select | NONE |
Action
Item | Properties | Data Type | Options | Default value |
---|---|---|---|---|
ID | id | string | automatic | |
Label | label | string | Radio 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 | ||
Options | options | array of object | [{“label”:“Option1”,“value”:“option1”},{“label”:“Option2”,“value”:“option2”}] | |
Value | value | string | option1 | |
Error | error | boolean |
Tips
[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. |