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();
}
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
>