I have a radwindow with a button that opens other radwindow. When I click the button to open the second RadWindow, this lost the skin and the information is not show correctly and the border and icons of the radwindow can wrong. This problem is only IE.
<telerik:RadWindow ID="RadWindow1" runat="server" VisibleOnPageLoad="false" Skin="Black" >
<ContentTemplate>
<div>
<h1>TEST</h1>
</div>
</ContentTemplate>
</telerik:RadWindow> function AddNewDocument(sender, args)
{
var RadWindow = $find("<%=RadWindow1.ClientID%>");
RadWindow.set_modal(true);
RadWindow.show();
}How can I force the second radwindow to use the skin="black" as is defined?