JQgrid - no such gridunload method

I am using the latest version of jqGrid (4.8.2), and there are some weird ones:

Finally, in the source, I can find the method: gridUnload: function (jqGridId), and it looks similar (but you should call this method as follows:

$.jgrid.gridUnload('jqGridKoeff'); 

But this situation is really strange. Be careful!

+7
javascript jquery methods jqgrid
source share
1 answer

Newer versions of the grid are changing. Now you need to call the GridUnload functions as follows:

 $.jgrid.gridUnload('#jqGridId'); 

where jqGridId is the grid identifier

+7
source share

All Articles