disabled
Description
Optional. Defines whether a radio button is disabledUsage
disabled?: boolean;
Default value
- true - a radio button is disabled
- false - (default) a radio button is enabled
Example
<RadioButton label="Disabled radio button" disabled={true}/>
Details
It is also possible to set a radio button to the disabled state by declaring the property with no value:
<RadioButton disabled />
Related article: Setting the disabled state
Related sample: Radio Button