disabled

indicates whether an item is enabled

boolean disabled;

Example

webix.ui({
    view:"text",
    disabled:true
});

Details

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();
See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.