Reputation: 11
I have a rad grid which fetches the data from database and displays required number of records even though there are number of records eg: if there are 10,000 records which comes under search criteria. But we are retriving only the records equals to page size. ie., if paze size is 10 then 10 records will be retrived even though there are 10,000. This is done to overcome performance issues while loading millions of records.
Now the problem is if user clicks on grid column to sort only 10 records are getting sorted. But i need all the records in a sorted order then required records get displayed in the page.
Upvotes: 1
Views: 2822
Reputation: 2266
Two possibilities pop up in my mind:
Upvotes: 1