Check whether table row is selected?
Check whether table row is selected?

How can I check whether single row has been selected?
var groupRowsIndexes = [1,2,3];
api.rows(groupRowsIndexes).every(function () {
if (this.selected() /* how to check selection on row level? */) this.deselect();
else this.select();
})
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
That's the best what I came to:
Yep, that's a good way to go.
Colin