I want to open a child RadWindow with in a telerik:RadWindow with client side script, i have used "radopen", it showing a window but not exactly with same property and url as I configured. One more thing my Parent RadWindow is exists in a UserControl
this is my code:
<telerik:RadWindowManager ID="RadWindowManagerCustomValue" Style="overflow: hidden"
ShowContentDuringLoad="false" VisibleStatusbar="false" ReloadOnShow="True" IconUrl=""
DestroyOnClose="true" Modal="true" Height="390" Width="600" runat="server" OnClientClose="closeRadWindow"
EnableShadow="true" Title="Add/Edit Agreement Type">
<Windows>
<telerik:RadWindow ID="AddCompanyDialog" ShowContentDuringLoad="false" runat="server"
Title="Add Company" InitialBehaviors="Maximize" Behaviors="Close" NavigateUrl="somePage.aspx" />
</Windows>
</telerik:RadWindowManager>
function LoadCompanyPopup(sender, args) {
radopen(null, "AddCompanyDialog");
}