I am using inlineNav as follows:
var inlineparams = {
addParams: {useFormatter:false},
editParams: {extraparam: {
"action": "ajaxgrid",
"subaction": "jqedit",
"tableid": "sysbuglist",
"sessionid":"fd7c74d8-d3cb-102f-bd56-0015171f0bcc"
}},
add:true,
edit:true,
save:true,
cancel:true,
aftersavefunc:reloadGrid};
$("#navgrid").jqGrid("inlineNav","#navgrid_bottompager", inlineparams);
So, I am using the add, edit, save, cancel buttons on the bottompager.
Question: How do I get control after a save to the server? Saving to the server is working well, I just want to refresh the grid after a save.