I have a GridView that was changed to a RadGrid, now before the GridView had the paging using a drop down above it with the following options to show items per page
<asp:DropDownList ID="lstPage" runat="server" AutoPostBack="true" OnSelectedIndexChanged="lstPage_OnSelectedIndexChanged">
<asp:ListItem Value="5">5</asp:ListItem>
<asp:ListItem Value="15" Selected="True">15</asp:ListItem>
<asp:ListItem Value="20">20</asp:ListItem>
<asp:ListItem Value="50">50</asp:ListItem>
</asp:DropDownList>
</div>
But now with the RadGrid I am not sure how to do that? and I cant find the specific example on their site. Is there a way to tell the rad grid to use those custom values? 10,35,60,100> I am required to show the same options in tha paging.
Thank you
Method 1:
Method 2: