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 myGrid.enableBlockSelection(true); //disable block selection myGrid.enableBlockSelection(false);

Back to top