I have a situation where I have created a custom pager for a webdatagrid. It basically has link buttons for next and previous pages and a dropdown for page size. It works great. The issue is that we have a user for which the custom pager is not displayed, but rather a pager that lists page numbers like 1, 2 3... I'm not sure where this pager behavior is coming from, as there is nothing like this in our custom code. Any ideas as to what is happening? We are using version 2009 r2 .Here is the tag for our data grid.
<ig
:WebDataGrid ID="wdgCases" runat="server" Width="100%" Height="100%" DataKeyFields
="c_id, p_id" AutoGenerateColumns="False" HeaderCaptionCssClass="textbold" OnCellSelectionChanged="WebDataGridView_CellSelectionChanged"
EnableTheming="False" EnableAjax="False">
<Behaviors>
<ig:Filtering Visibility="Visible" Enabled="true" AnimationEnabled="True" />
<ig:Sorting Enabled="true">
</ig:Sorting>
<ig:Selection CellSelectType="Single" Enabled="true">
<SelectionClientEvents CellSelectionChanged="wdgCases_CellSelectionChanged" />
</ig:Selection>
<ig:Paging PagerAppearance="Bottom" PagerCssClass="igg_BluePager" Enabled="true">
<PagerTemplate>
<uc1:WebDataGridPager ID="WebDataGridPager1" runat="server" />
</PagerTemplate>
</ig:Paging>
<ig:RowSelectors RowNumbering="True">
</ig:RowSelectors>
</Behaviors>
<Columns>
<ig:BoundDataField DataFieldName="name" Key="ame" Width="150" CssClass="TextUnderline">
</ig:BoundDataField>
<ig:BoundDataField DataFieldName="cn" Key="cn" Width="100" CssClass="TextUnderline">
<Header Text="CN"/>
</Columns>
</ig:WebDataGrid>
Hello dixson1,
Please let me know how if you have further questions regarding this issue.