Hi,
I have this main <iframe> with many nested frame pages. Within nested <frame name="clientarea"> page I'm calling, I'm launching a radopen URL popup. The issue is I cannot move the popup around outside the nested frame page.
radopen example:
radopen(sUrl, "RadOrder", 900, 700, 100, 150);
HTML example:
<iframe id="SearchIFrame" name="SearchIFrame" scrolling="NO" src="Main.asp">
<frameset cols="100%" frameborder="0" border="0" rows="25,*%" name="mainFrame">
<frame align="TOP" frameborder="0" marginheight="0" marginwidth="0" name="namebar" scrolling="NO" src="namebar.asp" noresize="noresize"></frame>
<frameset cols="100%" frameborder="0" border="0" rows="25,*%" name="clientframeset">
<frame frameborder="0" marginheight="0" marginwidth="0" name="toolbar0" scrolling="NO" src="blank.asp"></frame>
<frameset cols="100%" frameborder="0" border="0" rows="25,*%" name="subframeset">
<frame frameborder="0" marginheight="0" marginwidth="0" name="tabbar" scrolling="NO" src="blank.asp" noresize="noresize"></frame>
<frame frameborder="0" marginheight="0" marginwidth="0" name="clientarea" src="blank.asp" noresize="noresize" scrolling="auto"></frame>
</frameset>
<frameset cols="100%" frameborder="0" border="0" rows="50,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10" name="subframeset2">
<frame frameborder="0" marginheight="0" marginwidth="0" name="bgprocess" scrolling="no" src="blank.asp"></frame>
</frameset>
</frameset>
</frameset>
</iframe>
Telerik nested frame page which calls radopen:
<telerik:RadWindowManager RenderMode="Lightweight" ID="RadWindowManager1" runat="server"EnableShadow="true" Behaviors="Maximize,Move,Close" ShowOnTopWhenMaximized="true" RegisterWithScriptManager="True" KeepInScreenBounds="false">
<Windows>
<telerik:RadWindow RenderMode="Lightweight" ID="RadPageExample" runat="server" ShowContentDuringLoad="false" Width="800px"
Height="600px" Left="100px" Top="55px" Title="RX New2" Behaviors="Move">
</telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>