disabled
Description
defines whether a combo is disabledType
boolean
Default value
false
Example
<Combo placeholder="Select an option" disabled={true}/>
Details
It is also possible to set a combo to the disabled state by declaring the property with no value:
<Combo disabled /> <!-- equals to "disabled={true}" -->
Related article: Setting the disabled state
Related sample: Combo