I use jqGrid in my webpage. Can anyone help me to perform any action when each time the navigator buttons clicked in the navigator of the gird? also when entering the page number in the page number textbox. I tried using onPaging: function(), but I am not sure how to use it as I am new to this jqGrid. Thank you in advance.
I need to perform the action once the grid is loaded with data completely after clicking on any of the navigator buttons. for example,
alert("Hi there!!");
I need to perform. glad to get idea from Someone...
If you need to execute some action after "the grid is loaded with data completely" then you should use loadComplete
callback instead of onPaging
. If the page will be changed the grid will be reloaded and loadComplete
callback will be called at the end.