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.

ParameterDescription
labelVisible field label.
valueSelected option value.
ifConditional 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.

ParameterDescription
valueCurrent value or binding expression.
labelVisible and accessible label. Defaults to the value.
ifConditional rendering expression.