I have a question about how the Telerik grid stores data internally after fetching it as part of infinite scroll operations. I am using the remote virtualization mode and fetch new records through Ajax calls.
I am able to access the data set that is currently bound to the grid through:
$("#Grid").data().kendoGrid.dataSource.view()
As expected the grid makes an Ajax request to request new pages, but it seems to store data for previous pages in an object somewhere. Is there a way to acccess that object through the cient side API? Meaning can I view all the data for all the pages that were requested by the grid (not just the current page)?
I have also noticed that the grid will often make the same Ajax request twice during scrolling (for the same page number). Is there a way to prevent this since the duplicate request seems to return the same data as the previous one.