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

RadWindow VisibleTitleBar=false has no effect

3 Answers 116 Views
Window
This is a migrated thread and some comments may be shown as answers.
Matthew Timbs
Top achievements
Rank 1
Matthew Timbs asked on 01 Mar 2010, 06:16 PM
Setting the VisibleTitleBar attribute to false on the RadWindow has no effect.  The title bar is still shown (with an icon at the upper left).  Is there any way to hide that?

3 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 02 Mar 2010, 07:06 AM
Hello Mathew,

I am not sure about the issue that you are facing. The 'VisibleTitlebar' property is working in my end. Could you paste the code that you tried?

Also try the following approach by attaching OnClientShow event to RadWindow and set the property from client as shown below.
JavaScript:
 
<script type="text/javascript"
    function OnClientShow(sender, args) { 
        sender.set_visibleTitlebar(false); 
    } 
</script> 

Shinu.
0
Matthew Timbs
Top achievements
Rank 1
answered on 02 Mar 2010, 01:16 PM
Shinu,

Setting it via JS works but setting it in markup or in the code behind does NOT work.  Most of the pages I use this in are fairly straightforward so I was surprised to find something this basic not working.

I don't mind setting it in JS, it's just irritating that I have to spend the time fighting with it.

--Matt
0
Georgi Tunev
Telerik team
answered on 02 Mar 2010, 02:18 PM
Hi Matthew,

The VisibleTitleBar is working as expected on our end - please find attached a screenshot of a small test that I did. In my code, I am setting this property in the declaration of a RadWindowManager and from code-behind - to a newly created RadWindow that is added as a standalone control. As you can see from the screenshot, there are no toolbars.

At this point I cannot tell what is the reason for this setting not to work on your side, but if you open a support ticket and send me a small sample that isolates this problem, I will check it right away.


Sincerely yours,
Georgi Tunev
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
Window
Asked by
Matthew Timbs
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Matthew Timbs
Top achievements
Rank 1
Georgi Tunev
Telerik team
Share this question
or