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

[Solved] Radwindow title bar buttons cant be clicked

1 Answer 125 Views
Window
This is a migrated thread and some comments may be shown as answers.
Kyri
Top achievements
Rank 2
Kyri asked on 14 Apr 2009, 06:45 AM
My radwindow, will only allow the close title bar button to be clicked when i am using any skin other than vista and default.
here is the code behind the window

<telerik:RadWindow ID="RadWindow2" runat="server" onload="RadWindow2_Load"
                            OpenerElementID="<%# ImageButton1.ClientID %>" DestroyOnClose="True"
                            InitialBehavior="Default" ReloadOnShow="True">
                        </telerik:RadWindow>

I do set the skin on the load event

 protected void RadWindow2_Load(object sender, EventArgs e)
    {
        if (((RadSkinManager)Master.FindControl("RadSkinManager1")).Skin != ((RadWindow)sender).Skin)
        {
            string test = ((RadSkinManager)Master.FindControl("RadSkinManager1")).Skin;
                       ((RadWindow)sender).Skin = test;
        }
    }

any ideas? I allow the users to change the skin of the site via a RadSkinManager on a master page

1 Answer, 1 is accepted

Sort by
0
Fiko
Telerik team
answered on 16 Apr 2009, 01:16 PM
Hello Kyri,

I used the provided information, but unfortunately I was not able to reproduce the described problem. Could you please open a new support ticket and send us a simple project, where we can observe the issue or rework the attached one in order to replicate your setup? Once we have a better view over your exact setup and the problem with it, we will be able to provide a solution.

Sincerely yours,
Fiko
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Window
Asked by
Kyri
Top achievements
Rank 2
Answers by
Fiko
Telerik team
Share this question
or