Check documentation for the latest version of dhtmlxSuite selectBlock DHTMLX Docs

selectBlock

selects a block in the Grid, according to the specified rows' ids and columns' indexes

void selectBlock(string|number start_row,number start_col,string|number end_row,number end_column);
start_rowstring|numberthe start row's id
start_colnumberthe start column's index
end_rowstring|numberthe end row's id
end_columnnumberthe end column's index

Example

myTreeGrid.selectBlock("row1",0,"row5",4);

Back to top