Reload Page On Add Or Edit Of Jqgrid Submit
I have a jqgrid on my page which i use for adding data. I use the dialog method to add but when the user submits, i want to refresh the entire page, not just the grid. Does anyone
Solution 1:
I was using afterRefresh instead of afterSubmit, this now reload the page
afterSubmit: function () {
location.reload(true);
}
Post a Comment for "Reload Page On Add Or Edit Of Jqgrid Submit"