How can I unselect a row on click? I tried this:
beforeSelectRow: function(rowid, e) {
if ($(this).getGridParam('selrow') == rowid) {
return false;
} else {
return true;
}
}
But only selection works, if I click on a selected row it does nothing.