I would like to know how the pagination works in jQWidgets. Basically, if I have a webservice returning json data of 30,000 records, does jQWidget caches all the records at once? I mean if we go by the following example mentioned in the link below:
$('#grid').jqxGrid({ pagesizeoptions: ['10', '20', '30']});
https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxgrid/jquery-grid-paging.htm
It will only display 10 records in the first view and when a user clicks on the arrow option towards right , it will show another 10 records etc. On the Web developer tools, I don’t see webservice getting called after clicking next /right arrow to view new records.Hence I want to know whether there’s any internal cache mechanism used in jQWidget which can store all the 30,000 records or more as soon as webservice returns it?