In jqGrid, I am currently disabling row select with the following:
beforeSelectRow: function() { return false; }
This works fine for left
If you want to disable the row select, you can config onSelectRow to return false, this will block both left click and right click.
onSelectRow
false
onSelectRow: function() { return false; }
To force unselect row on right click:
onRightClickRow: function () { grid.jqGrid('resetSelection'); return false; }