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

Unable to hide title in titlebar in Radwindow

1 Answer 609 Views
Window
This is a migrated thread and some comments may be shown as answers.
William Plourde
Top achievements
Rank 1
William Plourde asked on 01 Dec 2012, 01:12 PM
I'm attempting to use client side API to hide the title, another way i'm trying to do it is by setting the title attribute to false and neither are working. 

 function launchRadWindow(url)
    {
        var oWnd = $find("<%= DialogWindow.ClientID %>");
        oWnd.show();
        oWnd.setSize(640, 480);
        oWnd.setUrl(url);
        oWnd.minimize();
        oWnd.maximize();
        oWnd.restore();
        
    }
<telerik:RadWindow VisibleOnPageLoad="False" ID="DialogWindow" runat="server" Height="480px" Width="640px" VisibleStatusbar="False" NavigateUrl="false" IconUrl="false" Skin="Default" Behaviors="Close, Minimize, Maximize, Move, Resize" Overlay="True"> </telerik:RadWindow>

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 03 Dec 2012, 05:25 AM
Hello,

I suppose you want to hide the title of the RadWindow. If you are not setting the title property of RadWindow then the title won't show. If you want to hide the titlebar try setting the VisibleTitlebar property of RadWindow to false.

ASPX:
<telerik:RadWindow ID="DialogWindow" runat="server" VisibleTitlebar="false" >
</telerik:RadWindow>

Please elaborate your scenario if it doesn't helps.

Regards,
Princy.
Tags
Window
Asked by
William Plourde
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or