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

[Solved] Skins Not applied - even in online demo?

3 Answers 115 Views
Window
This is a migrated thread and some comments may be shown as answers.
david
Top achievements
Rank 1
david asked on 07 Mar 2008, 11:28 PM
I've noticed that when I change the rad window Skin the appearance doesn't change.  Oddly when I look at the online demo I see the same behavior?

http://www.telerik.com/demos/aspnet/prometheus/Window/Examples/Skinning/DefaultCS.aspx

3 Answers, 1 is accepted

Sort by
0
Georgi Tunev
Telerik team
answered on 10 Mar 2008, 01:07 PM
Hello David,

Thank you for bringing this problem to our attention - we fixed the online example and you can fix the local demo on your side by removing the Skin property from the RadWindow control.

Your points were updated.



All the best,
Georgi Tunev
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
david
Top achievements
Rank 1
answered on 22 Apr 2008, 11:24 PM
Skin problem again, this time with Prometheus, I get the default skin, not Vista, this problem doesnt happen when I use the code with the .net versions

<telerik:radwindowmanager runat="server" ID="RadWindowManager1"><Windows>

<telerik:RadWindow NavigateUrl="l" VisibleOnPageLoad="false" Modal="true"

ID="RadWindow1" runat="server" Font-Strikeout="False"></telerik:RadWindow>

</Windows></telerik:radwindowmanager>
client - side:

var oWindow = window.radopen("/Administration/Admin-Student-Course-Master-Email.aspx?StudentID=" +StudentID + "&Username=" + Username+ "&CourseID=" + CourseID + "&AccountCode=" + AccountCode + "&CourseIDX=" + CourseIDX, null);

oWindow.SetSize (400,400);

oWindow.SetTitle (

"Resend Letter");

oWindow.SetModal (

true);

oWindow.Skin =

"Vista";

oWindow.Center();

oWindow.set_Behaviors(Telerik.Web.UI.WindowBehaviors.Move + Telerik.Web.UI.WindowBehaviors.Resize +Telerik.Web.UI.WindowBehaviors.Close);

0
david
Top achievements
Rank 1
answered on 23 Apr 2008, 12:56 PM
ok, found the solution, I had to apply the properties to the RadWindowManager ie:

Skin

="Vista" Behaviors="Move,Resize,Close"

but if I applied these same properties to the RadWindow they dont work.

I don't think this is expected behaviour.

Tags
Window
Asked by
david
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
david
Top achievements
Rank 1
Share this question
or