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