Hello,
I have a problem with paging in a Web Content Form.
The problem is that when you click on next page or you click on a number or you select page size, you see on the bottom left that it's loading but the grid is not changing.
In the project there is a MasterPage. There is nothing in there except a RadScriptManager.
Then I have a Web Content Form that uses the MasterPage.
In the Web Content Form there is a UpdatePanel and in the UpdatePanel there is a RadGrid.
On the grid there is a filter on each column and a groupheader. Those 2 work fine.
I tried using a basic grid with non of the fancy things but that didn't work.
Then I take the whole content of the Web Content Form and put it in a Web Form, not using the MasterPage, then paging works just fine.
Any ideas guys?
Regards,
Auke
I have a problem with paging in a Web Content Form.
The problem is that when you click on next page or you click on a number or you select page size, you see on the bottom left that it's loading but the grid is not changing.
In the project there is a MasterPage. There is nothing in there except a RadScriptManager.
<head runat="server"> <title></title> <asp:ContentPlaceHolder ID="cphHead" runat="server"> </asp:ContentPlaceHolder> </head> <body> <form id="form1" runat="server" style="width: 980px;"> <telerik:RadScriptManager ID="RadScriptManager1" runat="server" /> <div> <asp:ContentPlaceHolder ID="cphContext" runat="server"> </asp:ContentPlaceHolder> </div> </form> </body>Then I have a Web Content Form that uses the MasterPage.
In the Web Content Form there is a UpdatePanel and in the UpdatePanel there is a RadGrid.
On the grid there is a filter on each column and a groupheader. Those 2 work fine.
I tried using a basic grid with non of the fancy things but that didn't work.
Then I take the whole content of the Web Content Form and put it in a Web Form, not using the MasterPage, then paging works just fine.
Any ideas guys?
Regards,
Auke