This is a migrated thread and some comments may be shown as answers.

Css lost in the child radwindow

1 Answer 44 Views
Window
This is a migrated thread and some comments may be shown as answers.
H.
Top achievements
Rank 1
H. asked on 31 Oct 2012, 08:40 PM
 

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?

1 Answer, 1 is accepted

Sort by
0
Marin Bratanov
Telerik team
answered on 01 Nov 2012, 02:20 PM
Hello,

If there is already one RadWindow with this skin present on the same page then others should not exhibit skinning problems with this skin. Generally, such problem can happen because of IE's stylesheet limitation or because of network issues. More information on the subject is available here: http://www.telerik.com/help/aspnet-ajax/window-troubleshooting-missing-borders-titlebar-and-commands.html. If this does not cover your case I advise on opening a support ticket and sending us a simple, runnable project that shows the problem so we can inspect it.


Regards,
Marin Bratanov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Window
Asked by
H.
Top achievements
Rank 1
Answers by
Marin Bratanov
Telerik team
Share this question
or