I can't seem to get the pager text of a RadGrid to render.
We're not doing anything special, am I not seeing something?
ASPX:
CS:
But the grid always renders as in the screenshot. Can anyone help?
John
We're not doing anything special, am I not seeing something?
ASPX:
<rad:RadGrid ID="rgBestellingen" runat="server" AllowPaging="True" runat="server" GridLines="None" Width="90%"> <MasterTableView> <PagerStyle Mode="NextPrevAndNumeric" HorizontalAlign="Right"></PagerStyle> </MasterTableView></rad:RadGrid>
CS:
public partial class Test : BasePage{ protected void Page_Load(object sender, EventArgs e) { List<string[]> items = new List<string[]>(50); for (int i=0;i<50;i++) items.Add(new string[3] { "1", "2", "3" }); rgBestellingen.DataSource = items; rgBestellingen.VirtualItemCount = items.Count; rgBestellingen.Rebind(); }}But the grid always renders as in the screenshot. Can anyone help?
John
