I am newbie in using jqgrid.
While new page load the grid is properly loading the data from database. Afterwards due to loadonce: true the grid is not reloading the
{
// edit options
zIndex: 100,
url: '/User/Edit',
closeOnEscape: true,
closeAfterEdit: true,
recreateForm: true,
afterComplete: function (response) {
if (response.responseText) {
$("#userGrid").jqGrid('setGridParam', { datatype: 'json' }).trigger('reloadGrid');
}
}
}
Worked for me :
Logic is we are reloading the grid again after the call returns to the JqGrid....try it works