Here is a workaround that my brother and I came up with, just put the following code in the beforeSelectRow event:
beforeSelectRow: function(rowid, e) {
if ($(this).getGridParam('selrow') == rowid) {
return false;
} else {
return true;
}
}
source
share