I am using jqgrid in \'multiselect\' mode and without pagination. When the user selects individual records by using mouse click, is there any way that I can bring those sele
If you have the IDs of the row(s) you can do a special sort on server side by using following command for e.g. MySQL:
Select a,b,c FROM t ORDER BY FIND_IN_SET(yourColumnName, "5,10,44,29") DESC
or
ORDER BY FIELD(yourColumnName, "5") DESC