sets the marked cells support to enabled/disabled state
mode | boolean | enable/disable marked cells support |
Available only in PRO Edition
//enable marked cells
myGrid.enableMarkedCells(true);
//disable marked cells
myGrid.enableMarkedCells(false);
the user will be able to select single cell instead of selecting the whole row
Back to top