I am using telerik radgrid in my .net aspx page. I want to implement custom pagination. But for this i don't have the total record count initially. Want to get more data from server when user clicks on the next page link after reaching the last page.
Example: if initially only 10 records are displayed on 1st page. If i click "Next" link it should fetch next set of data.
But issue is: "Next" button do not fire OnCommand or OnItemCommand events, if there are no more next pages.
So the question is how to handle pagination when total number of records is not knows initially? Which radgrid event to handle to get "Next" button click event irrespective of whether grid is already displaying last page or not.