RadioList
A group of options where only one can be selected at a time. All options are visible at once, making it easy to compare choices. Use it when users need to pick one option from a small set.
| Parameter | Description |
|---|---|
| label | Visible field label. |
| value | Selected option value. |
| if | Conditional rendering expression. |
Usage
xml<RadioList label="Plan" value="$form.plan"><Option value="solo" label="Solo" /><Option value="team" label="Team" /></RadioList>
Option
A selectable option in a Selector or RadioList.
| Parameter | Description |
|---|---|
| value | Current value or binding expression. |
| label | Visible and accessible label. Defaults to the value. |
| if | Conditional rendering expression. |