Reload Grid not working for mutiple jqgrid
- by arun chaudhary
I am using jqgrid.My page has three tabs and each tab contains a different grid.All grids have different ids.The content of tabs is fetched via AJAX request lazily.Now after all three grids are rendered and i try to reload grid via function
jQuery("#myOffersTable").trigger('reloadGrid');
Only the grid which loaded last reloads and it doesn't work for other grids.
eg if grids load seq is : 1-2-3 then this code will only work for grid 3
but if seq is 3-2-1 then it will work only for 1.
But if i try reloading grids using reload button on navigator bar it works fine.
Any help would be appreciated.
Thanks
Arun