Check documentation for the latest version of dhtmlxSuite enableMarkedCells DHTMLX Docs

enableMarkedCells

sets the marked cells support to enabled/disabled state

void enableMarkedCells(boolean mode);
modebooleanenable/disable marked cells support

Available only in PRO Edition

Example

//enable marked cells
myTreeGrid.enableMarkedCells(true);
//disable marked cells
myTreeGrid.enableMarkedCells(false);

Details

the user will be able to select single cell instead of selecting the whole row

Back to top