I’m retrieving data froma 3rd party API that only returns a max of 50 rows at a time, but will return a total count of records (3,412).
Is it possible to use paging under these circumstances without getting all 3,412 rows back at once and tell the pager control that I have 3,412?
The API allows me to retrieve the “next” n…..50 rows each way.
So ideall I would like to let the pager know I have 3,142 and each time the next or back button is pushed retreive the correct range of the next 50 rows.
I’m trying to avoid caching or saving all 3,412 rows in a Db because it’s break their license agreement.
thanks,
voss.