I have a jqGrid that is used to display a relativity large number of rows so I have pagination enabled to only fetch 100 at a time. I also have funcitonality that allows the user to add a new row to the grid. There is a requirement that after adding a row, that the row should be selected and visible in the grid.
I am currently using setSelection to select the row by id and this works if the row is on the current page. However, if the row is not on the current page, nothing happens. Does anyone have a suggestion on how I might implement this functionality?