indicates whether an item is enabled or not
webix.ui({
view:"button",
disabled:true
});
By dafaults all items are enabled, i.e. the value is false.
A disabled item looses focus and will not react on mouse events.
Same state can be forced through Webix API:
$$("button1").disable();
$$("button1").enable();
Back to top