disabled
Description
Optional. Defines whether a rich select is disabledUsage
disabled?: boolean;
Default value
- true - a rich select is disabled
- false - (false) a rich select is enabled
Example
<RichSelect placeholder="Select an option" disabled={true} />
Details
It is also possible to set a rich select to the disabled state by declaring the property with no value:
<RichSelect disabled />
Related article: Setting the disabled state
Related sample: RichSelect