Add new row to bottom of jQGrid
jqgrid, jquery
Solution
You should use `position` option of addRow which you typically specify by `addParams` option of inlineNav:
$("#grid").jqGrid("inlineNav", "#pager", {addParams: {position: "last"}});
See here for the corresponding demo.
Problem
I got a jqgrid with inline edit, and the possibility to add new rows. At the moment the new rows are displayed in "edit" mode at the top of the grid. What I want is to add the new row to the bottom of the grid since my "Add new row" button is in a custom bottompager... Anyone know if this is possible?