Only the 1st page has any rows, so what am I missing? Here's the code:
<telerik:RadGrid ID="RadGridHistPats" runat="server" AutoGenerateColumns="False" Skin="Outlook" AllowPaging="true" PageSize="10"> <MasterTableView > <Columns> <telerik:GridBoundColumn DataField="PatientID" HeaderText="PatientID" UniqueName="PatientID"> </telerik:GridBoundColumn> </Columns> </MasterTableView></telerik:RadGrid>
protected void Page_Load(object sender, EventArgs e){ if (!IsPostBack) { DataTable dt = new DataTable(); dt.Columns.Add("PatientID"); for (int iCount = 0; iCount < 200; iCount++) { DataRow dr = dt.NewRow(); dr["PatientID"] = iCount.ToString(); dt.Rows.Add(dr); } RadGridHistPats.DataSource = dt; RadGridHistPats.DataBind(); }}