Hi,
I've found an issue with the RadGrid, where the pager is showing the following buttons 1,2,3,4,5,6,7,8,9,10,...
All these buttons are working correctly. When I click on '...', I then get the following list: ...,8,9,10,11,12,13,14,15,16,17
The problem I'm having is that this second set of buttons is selecting the index from that list, so clicking '...' will go to the first page of results, '8' being the 2nd item in the list will go to page 2 etc. The control looks and behaves exactly as though one of the original options 1-10 had been selected and seems to correspond to the position/index of the selected button rather than its content.
The relevant code snippet for the pager configuration is as follows:
<telerik:RadGrid ID="rgSearchResults" AllowPaging="false" AllowSorting="false"
PageSize="25" runat="server" AllowFilteringByColumn="false" ShowGroupPanel="False"
EnableLinqExpressions="False">
<PagerStyle Mode="NumericPages" Position="TopAndBottom" AlwaysVisible="True" PageButtonCount="10" />
<ClientSettings>
<ClientEvents OnMasterTableViewCreating="MasterTableViewCreating" />
<ClientEvents OnGridCreated="OnGridCreated" />
</ClientSettings>
<MasterTableView AllowPaging="True" AllowSorting="True" PageSize="10" CommandItemDisplay="None"
DataKeyNames="ID" AutoGenerateColumns="False" ShowHeader="false">
Please could you advise on how to fix this? I've updated to the latest version of the UI for ASP.NET AJAX code. I wonder whether I'm missing some property?
Thanks