Simple grid populated on the page load from a data table
loads fine
but if you then select any of the paging controls to move to another page it disappears
the page is within a master page which has this code in it
| <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
| <Scripts> |
| <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" /> |
| <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" /> |
| </Scripts> |
| </telerik:RadScriptManager> |
Then within the page itself its like this:
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
| <ajaxsettings> |
| <telerik:AjaxSetting AjaxControlID="RadGridGroups"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="RadGridGroups" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </ajaxsettings> |
| </telerik:RadAjaxManager> |
| <strong>Groups:</strong> |
| <telerik:RadGrid ID="RadGridGroups" runat="server" AllowPaging="true" |
| PageSize="5" GridLines="None" width="95%"> |
| <clientsettings allowkeyboardnavigation="true" enablepostbackonrowclick="true"> |
| <Selecting AllowRowSelect="true" /> |
| </clientsettings> |
| <mastertableview datakeynames="Group_ID" /> |
| <pagerstyle mode="NextPrevAndNumeric" /> |
| </telerik:RadGrid> |
Any ideas what its doing or I am missing or doing wrong?
Thanks
Jon.