Hello All,
I came across this strange issue happening only on production.
In my RadGrid, i have set the pager style as below, and its counting and displaying the paging details properly on local, dev and test environemnts (for example, 1,000 items in 10 pages)
<
PagerStyle
Mode
=
"NextPrevAndNumeric"
PageSizeLabelText
=
"Page Size:"
PageSizes
=
"10,20,50"
Position
=
"TopAndBottom"
PagerTextFormat
=
"{4} {5:0,0} items in {1:0,0} pages"
/>
But on production, the counting of items and pages is behaving strange. For example, when i filter and sort or page to first or last page, the counting changes randomly and displays different numbers.
Can someone help me what must the issue?
I am binding the RadGrid with "asp:ObjectDataSource" (not using NeedDataSource event). I need to do this way, as this is an old code and cannot restructure everything for good reasons.
Please suggest.