Reputation: 4665
I have ASP.NET Web User Control page with Telerik Ajax grid implemented inside to display records from Sharepoint Server 2013.
On paging, the telerik grid performs postback, hence fetching all records on page change. Thus encountering the performance issue.
Is there any way to stop postback on paging?
Or Is there any possible way to solve this issue?
Upvotes: 0
Views: 883
Reputation: 1118
You can not prevent PostBack
on paging
and sorting
as it rebinds the grid every time. The below link contains the details about your problem. Kindly visit it.
https://www.telerik.com/forums/prevent-postback
Upvotes: 0