Documentation

editable

allows/denies editing in the table

boolean editable;

Example

webix.ui({
    view:"datatable",
    editable:true,
    ...
});

See also

Details

To allow only programmatic editing, set the editaction parameter to the none value.

webix.ui({
    view:"datatable",
    editable:true,
    editaction:"none"
    ...
});
Back to top