allows/denies editing in the table
webix.ui({
view:"datatable",
editable:true,
...
});
To allow only programmatic editing, set the editaction parameter to "custom".
webix.ui({
view:"datatable",
editable:true,
editaction:"none"
...
});