Hey!
I have a RadWindow sized 800*600, inside of it I have a button that opens a new RadWindow, I want the new window to be maximized over the whole screen not just the 800*600 parent window is that possible?
This is how I am currently doing it.
I have a button that onclick calls OpenWindow.
Sincerely, Jure
I have a RadWindow sized 800*600, inside of it I have a button that opens a new RadWindow, I want the new window to be maximized over the whole screen not just the 800*600 parent window is that possible?
This is how I am currently doing it.
<
telerik:RadWindowManager
KeepInScreenBounds
=
"true"
ID
=
"rwm"
Width
=
"700"
Height
=
"600"
Modal
=
"true"
ShowContentDuringLoad
=
"false"
ReloadOnShow
=
"true"
VisibleStatusbar
=
"false"
Behaviors
=
"Close,Reload"
runat
=
"server"
EnableShadow
=
"true"
>
<
Windows
>
<
telerik:RadWindow
ID
=
"rwMax"
runat
=
"server"
OnClientShow
=
"maximizeRadWindow"
ShowOnTopWhenMaximized
=
"true"
/>
</
Windows
>
</
telerik:RadWindowManager
>
I have a button that onclick calls OpenWindow.
<
telerik:RadCodeBlock
ID
=
"RadCodeBlock1"
runat
=
"server"
>
<
script
type
=
"text/javascript"
>
function OpenWindow(url){
var pagePath = '<%= Page.ResolveUrl("~") %>';
window.radopen(pagePath + url, "rwMax");
}
function maximizeRadWindow(sender, e) {
sender.maximize();
}
</
script
>
</
telerik:RadCodeBlock
>
Sincerely, Jure