Check documentation for the latest version of dhtmlxSuite enableCellIds DHTMLX Docs

enableCellIds

enables/disables unique ids for cells (id will be automatically created by the template: 'c_[RowId]_[colIndex]')

void enableCellIds(boolean mode);
modebooleanenable/disable unique ids for cells

Example

//enable unique ids for cells
myGrid.enableCellIds(true);
//disable unique ids for cells
myGrid.enableCellIds(false);

Back to top