I have a jqgrid with multiselect true and I want to set some of rows.(I know the row ids.) How can I do that?
multiselect true
I mean opposite of
$(\"#m
$.each(rowsToSelect, function(_, rowId) { $grid.setSelection(rowId, false); });
No much difference. Just seemed neater :)