indicates whether an item is enabled
webix.ui({
view:"text",
disabled:true
});
By default, all items are enabled, i.e. the value is false.
A disabled item loses focus and will not react on mouse events.
The same state can be forced through Webix API:
$$("text1").disable();
$$("text1").enable();