disabled property
bool
get
disabled
The HTMLInputElement.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);