We have beening using the RadAjax with Splitter in master page and it works fine.
but when we migrate to Prometheus Q3 sp1, the ajax doenst work anymore.
our requirement is as follow:
1.the toolbar in page header could ajaxify content and application messages
2. the content could ajaxify the application messages.
3. should use Master Page
I prepare a small demo but it will not working now, i could not find problem, could anyone help me. thanks so much
but when we migrate to Prometheus Q3 sp1, the ajax doenst work anymore.
our requirement is as follow:
1.the toolbar in page header could ajaxify content and application messages
2. the content could ajaxify the application messages.
3. should use Master Page
I prepare a small demo but it will not working now, i could not find problem, could anyone help me. thanks so much
| <%@ Page Language="C#" EnableTheming="false"%> | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <script runat="server"> | |
| </script> | |
| <html xmlns="http://www.w3.org/1999/xhtml" > | |
| <head runat="server"> | |
| <title>Untitled Page</title> | |
| </head> | |
| <body> | |
| <form id="form1" runat="server"> | |
| <asp:PlaceHolder ID="phdManager" runat="server"></asp:PlaceHolder> | |
| <asp:ScriptManager ID="ScriptManager" runat="server" /> | |
| <telerik:RadAjaxManager ID="ramMain" runat="server"> | |
| <AjaxSettings> | |
| <telerik:AjaxSetting AjaxControlID="pnlPageHeader"> | |
| <UpdatedControls> | |
| <telerik:AjaxUpdatedControl ControlID="pnlApplicationMessage" /> | |
| <telerik:AjaxUpdatedControl ControlID="pnlMainContent" /> | |
| </UpdatedControls> | |
| </telerik:AjaxSetting> | |
| <telerik:AjaxSetting AjaxControlID="pnlMainContent"> | |
| <UpdatedControls> | |
| <telerik:AjaxUpdatedControl ControlID="pnlApplicationMessage" /> | |
| </UpdatedControls> | |
| </telerik:AjaxSetting> | |
| </AjaxSettings> | |
| </telerik:RadAjaxManager> | |
| <telerik:RadWindowManager ID="RadWindowManager1" runat="server" Height="210px" Modal="True" | |
| Width="400px"> | |
| </telerik:RadWindowManager> | |
| <telerik:RadSplitter ID="rstPage" runat="server" Height="100%" Width="100%" Orientation="Horizontal" FullScreenMode="true"> | |
| <telerik:RadPane ID="RadMenu" runat="server" Width="100%" Height="35px"> | |
| <asp:Panel ID="pnlPageHeader" runat="server"> | |
| <div id="pageHeader" style="width: 100%;"> | |
| <asp:Button ID="Button2" runat="server" Text="Button" />Top Menu:<%=DateTime.Now.ToLongTimeString() + " " + DateTime.Now.Millisecond %> | |
| </div> | |
| </asp:Panel> | |
| </telerik:RadPane> | |
| <telerik:RadPane ID="RadContent" runat="server" Scrolling="None" Height="100%" Width="100%"> | |
| <telerik:RadSplitter ID="RadSplitter1" runat="server" Width="100%" Height="100%" Orientation="Vertical"> | |
| <telerik:RadPane ID="rpnLeft" runat="server" Height="100%" Width="200px" Scrolling="none"> | |
| <asp:Panel ID="pnlApplicationMessage" runat="server" Height="200px"> | |
| AppMessages:<%=DateTime.Now.ToLongTimeString() + " " + DateTime.Now.Millisecond %> | |
| </asp:Panel> | |
| </telerik:RadPane> | |
| <telerik:RadSplitBar ID="Radsplitbar1" runat="server" CollapseMode="Forward" Height="100%"> | |
| </telerik:RadSplitBar> | |
| <telerik:RadPane ID="rpnContent" runat="server" Height="100%"> | |
| <asp:Panel ID="pnlMainContent" runat="server"> | |
| <asp:Button ID="Button3" runat="server" Text="Button" />MainContent:<%=DateTime.Now.ToLongTimeString() + " " + DateTime.Now.Millisecond %> | |
| </asp:Panel> | |
| </telerik:RadPane> | |
| </telerik:RadSplitter> | |
| </telerik:RadPane> | |
| <telerik:RadPane ID="rpnFooter" runat="server" Height="30px" Width="100%"> | |
| Footer | |
| </telerik:RadPane> | |
| </telerik:RadSplitter> | |
| <asp:Button ID="Button1" runat="server" Text="Button" /> | |
| </form> | |
| </body> | |
| </html> | |