How can I deselect all rows in a Slick grid?
I am using RowSelectionModel and cannot find a way to do this.
thanks
grid.getSelectionModel().setSelectedRanges([]);
Old question, but it worked for me:
grid.setSelectedRows([]);
In the official API