Check documentation for the latest version of dhtmlxSuite disableCell DHTMLX Docs

disableCell

disables the specified cell

void disableCell(string|number rowId,number columnIndex,boolean mode);
rowIdstring|numberthe row ID
columnIndexnumberthe column index
modebooleantrue/false, defines whether a cell should be disabled

Example

myGrid.disableCell("row1",1,true);

Change log

added in v5.2

Back to top