Hi,
I have a master page that has a RadWindowManager which contains some RadWindows that are common to all pages.
I am wanting to add specialized RadWindows on some of the child pages.
While I know that I can add these in the code behind or add them as separate RadWindows outside the Manager, I was wondering if I can add them declaratively into the RadWindowManager?
The behavior I'm looking for is similar to the use of the RadAjaxManagerProxy, and would look something like the code below.
Master Page:
Child Page:
If I can't do this, is there any performance cost to not putting the RadWindows into the Manager?
Many thanks.
I have a master page that has a RadWindowManager which contains some RadWindows that are common to all pages.
I am wanting to add specialized RadWindows on some of the child pages.
While I know that I can add these in the code behind or add them as separate RadWindows outside the Manager, I was wondering if I can add them declaratively into the RadWindowManager?
The behavior I'm looking for is similar to the use of the RadAjaxManagerProxy, and would look something like the code below.
Master Page:
<%@ Master Language="VB" CodeFile="Design.master.vb" Inherits="Design" %>[...]<telerik:RadWindowManager ID="RadWindowManager1" runat="server"> <Windows> <telerik:RadWindow ID="CommonWindow" runat="server" /> </Windows></telerik:RadWindowManager>[...]<%@ Page Language="VB" MasterPageFile="Design.master" CodeFile="Main.aspx.vb" Inherits="Main" %>[...]<telerik:RadWindowManager ID="RadWindowManager1Proxy" runat="server"> <Windows> <telerik:RadWindow ID="PageSpecific" runat="server" /> </Windows></telerik:RadWindowManager>[...]If I can't do this, is there any performance cost to not putting the RadWindows into the Manager?
Many thanks.