disabled
Description
defines whether a rich select is disabledType
boolean
Default value
false
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 /> <!-- equals to "disabled={true}" -->
Related article: Setting the disabled state
Related sample: RichSelect