Hi
I am preparing a jqxGrid with the below properties for pagination.
pageable: true,
virtualmode: true,
rendergridrows: function (obj) {
return dataAdapter.records;
}
For example if I am getting a total record count of 150 for a given filter condition and if I directly jump to last page ( say page size 10 ) i.e 15 on load of the grid( I will return those records from the server which should be there in page 15 ) OR if I navigate to 15th page by using the arrow buttons for pagination ( returning records from server according to the ‘pagenum’ request parameter ) then if I see the array that stores the records has grown to 150 out of which 1 to 140 are not having any data and only 140 to 150 have data. Is this expected behavior in order the pagination to work or Will this have any affect on the browser memory when we are dealing with millions of records and when we are on the last page ?
Thanks
Shankar