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