disabled
indicates whether an item is enabled
let disabled: boolean
Example
Section titled “Example”webix.grid({ disabled:true});
Details
Section titled “Details”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();