setCell()
sets selection to a specified cell
setCell(row?: object, column?: object): void;
Parameters:
row: object
- an object with a cell to be selectedcolumn: object
- the config of a column
Example
const row = treegrid.data.getItem(treegrid.data.getId(0));
const column = treegrid.getColumn("population");
treegrid.selection.setCell(row, column);