Posted 31 January 2020, 1:47 pm EST
Team,
Ive the below code to clear the rows selection in my grid.
myGrid.rows.forEach(row => {
row.isSelected = false;
});
It works but if I click any row manually then that row’s selection alone is not cleared.
Any thoughts?