Check documentation for the latest version of dhtmlxSuite mark DHTMLX Docs

mark

marks/unmarks the specified cell

void mark(string|number row,number cInd,boolean state);
rowstring|numberrow id
cIndnumbercell index
statebooleantrue or false

Available only in PRO Edition

Example

//mark cell
myTreeGrid.mark('row1',0,true);
//unmark cell
myTreeGrid.mark('row1',0,false);

Back to top