Skip to content

disabled

indicates whether an item is enabled

let disabled: boolean
webix.grid({
disabled:true
});

By default, a view is enabled, i.e. the value is false.

A disabled view loses focus and will not react to mouse events.

The same state can be forced through the DataGrid API:

mygrid.disable();
mygrid.enable();