I was able to try this but problem is that every time its opens window(Showing Window opening animation) again and content is not reloading. So I dont want to do that. I Want to Reload the Window contents With new URL parameters. I can able to get all required parameters to reload the Window
Please see image I am trying to achieve. Please help me to achieve this ?
Here is Window Definition :
<
telerik:RadWindowManager
ClientIDMode
=
"Static"
ID
=
"MainWindow"
Width
=
"1000"
Height
=
"600"
VisibleStatusbar
=
"false"
Behaviors
=
"Close,Move,Resize"
runat
=
"server"
OnClientClose
=
"onClientClose"
EnableViewState
=
"false"
DestroyOnClose
=
"true"
ReloadOnShow
=
"true"
Modal
=
"true"
ShowContentDuringLoad
=
"false"
OnClientShow
=
"showContentForIE"
Animation
=
"None"
>
</
telerik:RadWindowManager
>
Window Opening From Parent
function Open() {
var manager = $find('MainWindow');
manager.open(String.format('/health/srch/View/{0}/{1}/{2}', 1, "xx", "yy", "zz"), null);
}
}