Hello,
I am opening the rad window via radopen:
No matter what setting I put in the window manager, it does not want to use those settings. Any thoughts on how I can open my rad window and use the settings via the window manager?
I really need to set initial behaviors and other properties, but can't find it in the client side api documentation.
I have my RadWindowManager:
I am opening the rad window via radopen:
No matter what setting I put in the window manager, it does not want to use those settings. Any thoughts on how I can open my rad window and use the settings via the window manager?
I really need to set initial behaviors and other properties, but can't find it in the client side api documentation.
function
ShowAddForm() {
var
window = radopen(
"AddAction.aspx?CID=<%= HttpUtility.UrlEncode(Request["
CID
"]) %>"
,
"AddActionDialog"
);
window.setSize(800, 600);
window.SetModal(
true
);
window.center();
return
false
;
}
I have my RadWindowManager:
<
telerik:RadWindowManager
ID
=
"RadWindowManager1"
runat
=
"server"
EnableShadow
=
"true"
Behaviors
=
"Close"
KeepInScreenBounds
=
"True"
ReloadOnShow
=
"True"
ShowContentDuringLoad
=
"False"
VisibleStatusbar
=
"False"
VisibleTitlebar
=
"False"
>
<
Windows
>
<
telerik:RadWindow
ID
=
"AddActionDialog"
runat
=
"server"
Title
=
"Add New Action"
Height
=
"800"
Width
=
"600"
ReloadOnShow
=
"true"
ShowContentDuringLoad
=
"false"
Modal
=
"true"
/>
</
Windows
>
</
telerik:RadWindowManager
>