disabled property

bool get disabled

The HTMLSelectElement.disabled property is a boolean value that reflects the disabled HTML attribute, which indicates whether the control is disabled. If it is disabled, it does not accept clicks. A disabled element is unusable and un-clickable.

Implementation

external bool get disabled;
set disabled (bool value)

Implementation

external set disabled(bool value);