I'm trying to open a radwindow inside of another radwindow. It works fine in IE 7, but in firefox and IE 8, the window opens and starts to load, but it closes after a few seconds. My code is below.
and my radwindow declaration
This code works in other places when it's not inside of another radwindow.
function OnClientClose(oWnd, args) { //get the transferred arguments var arg = args.get_argument(); if (arg) { var clientId = arg.ClientId; var txtClientId = $find("<%= txtNewlclient.ClientID %>"); txtClientId.set_value(clientId.toString()); }}function showClientSearch() { window.radopen("../../Sections/Clients/ClientSearch.aspx", "rwindClientSearch");}<telerik:RadWindowManager ID="rwindMgr" runat="server"> <Windows> <telerik:RadWindow ID="rwindClientSearch" Title="Client Search" runat="server" Width="350px" Height="300px" OnClientClose="OnClientClose" ReloadOnShow="true" ShowContentDuringLoad="false"> </telerik:RadWindow> </Windows></telerik:RadWindowManager>This code works in other places when it's not inside of another radwindow.