Reputation: 714
How can I unselect all rows in a Slick Grid?
I'm using RowSelectionModel and can't find a way to do it.
Thanks
Upvotes: 8
Views: 7925
Reputation: 7344
Old question, but this worked for me:
grid.setSelectedRows([]);
From the official API
Upvotes: 8