or
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
>
<
asp:TemplateField
HeaderText
=
"Upload Additional File"
HeaderStyle-VerticalAlign
=
"Top"
ItemStyle-VerticalAlign
=
"Top"
>
<
ItemTemplate
>
<
telerik:RadProgressManager
ID
=
"RadProgressManager1"
runat
=
"server"
Skin
=
"Vista"
Height
=
"16px"
Width
=
"500px"
/>
<
telerik:RadUpload
ID
=
"RadUpload1"
runat
=
"server"
MaxFileInputsCount
=
"1"
MaxFileSize
=
"5242880"
InputSize
=
"60"
Width
=
"450px"
ControlObjectsVisibility
=
"None"
ToolTip
=
"Select file to attach to ticket (max filesize: 5MB)"
/>
</
ItemTemplate
>
</
asp:TemplateField
>