Radio
Overview
A UI element that allows users to make a single selection from a list of options.

Properties
name
string
Component name
value
any
Current component value
valid
boolean
Indicates if the component is valid
validating
boolean
Indicates if the component is validating
Methods
setValue
value: any
void
Set component value
setOptions
options: object[]
void
Set options for the radio component. Options is an array of objects with the following structure:
{
value: any;
label: string;
}
setDisabled
disabled: boolean
void
Disable or enable the component
reset
–
void
Reset component to the initial value
resetValidation
–
void
Clear validation errors
setErrors
errors: string |
string[] | null
void
Mark the component as invalid and displays errors
Triggers
On Change
Triggered when the component's state changes
On Focus
Triggered when the component is in focus
On Blur
Triggered when the component loses focus
On Init
Triggered when the component is initialized
Last updated
Was this helpful?