I'm using the bindkeys function in jqgrid to navigate with my keyboard on the grid
$("#List").jqGrid('bindKeys');
But the problem is that I also use a subgrid row to show some values :
subGridRowExpanded: function (subId, id) {
$("#" + subId).append($('#List').getCell(id, 'detail'));
}
That makes it impossible to use the down key to select the next row (the selected row expands when the user selects the row). If the user closes the subgrid row, he can use the down key again. The subgrid row is blocking the navigation if opened.
On the other hand, the up key is always working.
![]()
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top