I have a problem where all the links for the pages are set to "disabled" even though they have been enabled in the control and are showing up.
Here is my declaring code:
Here is the code in question it generates in relation to paging:
I can not find any code client side or server side that causes this behavior.
Can anyone help?
Here is my declaring code:
<!-- TAB 1 --><asp:Panel ID="panelTab1" runat="server"> <div> <telerik:RadGrid ID="DataFeedGrid" runat="server" AllowSorting="true" AllowPaging="true" AllowCustomPaging="true" OnSortCommand="Grid_Sorting" OnPageIndexChanged="Grid_Paging" Skin="Vista" meta:resourcekey="DataGrid"> <MasterTableView AutoGenerateColumns="False" EnableNoRecordsTemplate="true" ShowHeadersWhenNoRecords="false" NoMasterRecordsText="No records match the search criteria."> <Columns> <telerik:GridBoundColumn ItemStyle-Width="125px" meta:resourcekey="GridBoundColumn1" /> <telerik:GridBoundColumn ItemStyle-Width="100px" meta:resourcekey="GridBoundColumn2" /> <telerik:GridTemplateColumn > <HeaderTemplate> <asp:CheckBox ID="cbHdrFlightExplorer" runat="server" /> </HeaderTemplate> <ItemTemplate> <asp:CheckBox ID="cbFlightExplorer" runat="server" /> </ItemTemplate> </telerik:GridTemplateColumn> </Columns> </MasterTableView> <AlternatingItemStyle BackColor="#E9E9E9" /> <PagerStyle Mode="NumericPages" /> <ClientSettings> <ClientEvents OnGridCreated="OnClientGridCreated" /> </ClientSettings> </telerik:RadGrid> </div>Here is the code in question it generates in relation to paging:
<td class="rgPagerCell NumericPages"><div class="rgWrap rgNumPart"> <a onclick="return false;" disabled="disabled" class="rgCurrentPage"><span>1</span></a><a disabled="disabled"><span>2</span></a><a disabled="disabled"><span>3</span></a><a disabled="disabled"><span>4</span></a> </div><div class="rgWrap rgInfoPart"> Displaying page 1 of 4, items 1 to 2 of 8. </div></td>I can not find any code client side or server side that causes this behavior.
Can anyone help?