marks/unmarks the specified cell
row | string|number | row id |
cInd | number | cell index |
state | boolean | true or false |
Available only in PRO Edition
//mark cell
myTreeGrid.mark('row1',0,true);
//unmark cell
myTreeGrid.mark('row1',0,false);
Back to top