I am having a strange behavior with my pop-up window. Everything works fine the first time I load the pop-up window. Once the control comes back to the parent page, if the user tries to load the pop-up page again, it does not load correctly. It changes the size of the window and does not function right. If I refresh the page and load the pop-up it works fine.
Below is my window declaration. let me know what I am doing wrong here:
<
telerik:RadWindowManager
ID
=
"RadWindowManager1"
runat
=
"server"
Behavior
=
"None"
ShowContentDuringLoad
=
"false"
>
<
Windows
>
<
telerik:RadWindow
ID
=
"RadWindowRole"
runat
=
"server"
DestroyOnClose
=
"false"
OnClientClose
=
"OnClientClose"
Behavior
=
"None"
ReloadOnShow
=
"true"
ShowContentDuringLoad
=
"false"
Width
=
"975px"
Height
=
"545px"
Modal
=
"true"
/>
</
Windows
>
</
telerik:RadWindowManager
>