Check documentation for the latest version of dhtmlxSuite enableBlockSelection DHTMLX Docs

enableBlockSelection

enables block selection mode in grid

void enableBlockSelection(boolean mode);
modebooleanenable/disable block selection (optional, true by default)

Example

//enable block selection
myTreeGrid.enableBlockSelection(true);
//disable block selection
myTreeGrid.enableBlockSelection(false);

Back to top