editable
Optional. Defines whether a column is editable
Usage
editable?: boolean;
Default value: false
Example
const grid = new dhx.Grid("grid_container", {
columns: [
{ id: "project", header: [{ text: "Project" }], editable: false },
// more columns configuration objects
],
editable: true,
// more options
});
Related article: Editing Grid and separate columns