How to disable autoload in jqGrid?

andser picture andser · Jul 17, 2010 · Viewed 9.9k times · Source

How to disable autoload in jqGrid and load data manually when I need it?

Thanks.

Answer

Oleg picture Oleg · Jul 20, 2010

If you set datatype to 'local' the data from the server will be not loaded. To force the loading of data you can change datatype to 'json' or 'xml' with respect of setGridParam method (see http://www.trirand.com/jqgridwiki/doku.php?id=wiki:options and http://www.trirand.com/jqgridwiki/doku.php?id=wiki:methods#grid_related_methods) and then call trigger("reloadGrid") method.

See jqGrid is not loading data which has also the information what you asked.