I am trying to always show the pager at the bottom of a grid. When the page loads it shows fine. If I change the page size to show all rows it disappears. If I click on a row and a post back fires it reappears at the top of the grid. If I change the page size to a smaller number the pager returns to the bottom of the grid. What am I doing wrong? ... this page is using a master page if that makes a difference.
Andrew
Andrew
<telerik:RadGrid ID="grdRoles" runat="server" AutoGenerateColumns="False" AllowPaging="True" AllowSorting="false"GridLines="None" Width="375"OnNeedDataSource="GrdRoles_NeedsDataSource"OnDeleteCommand="GrdRoles_DeleteCommand" OnSelectedIndexChanged="GrdRoles_SelectedIndexChanged"> <PagerStyle Mode="NextPrevAndNumeric" AlwaysVisible="True" Position="Bottom" /> <MasterTableView CommandItemDisplay="None" DataKeyNames="Value" AutoGenerateColumns="False"> <Columns> <telerik:GridBoundColumn DataField="Value" HeaderText="Role" ReadOnly="false" SortExpression="Value" UniqueName="Value"> </telerik:GridBoundColumn> <telerik:GridButtonColumn ConfirmText="Remove all users from this role and delete?" ConfirmDialogType="RadWindow" ConfirmTitle="Delete" ButtonType="ImageButton" CommandName="Delete" Text="Delete" UniqueName="DeleteColumn" Visible="true"> <ItemStyle HorizontalAlign="Center" CssClass="MyImageButton" /> </telerik:GridButtonColumn> </Columns> </MasterTableView> <ValidationSettings CommandsToValidate="PerformInsert,Update" /> <ClientSettings enablepostbackonrowclick="true"> <Selecting AllowRowSelect="True" /> </ClientSettings></telerik:RadGrid>