unfortunately the page is database dependant and requires several other pages to function. I have a page that opens up a radwindow X, that radwindow opens a radwindow Y, that radwindow Z opens up one more W in which the radupload module resides. This last radwindow, W, can also be opened from the main page in some cases and the radupload works properly. However, when it is called directly from the page the upload module in window W works properly.
The base page has the windows defined as follows:
<telerik:RadWindowManager Skin="Sunset" ID="RadWindowManager1" runat="server" style="z-index:90000" >
<Windows>
<telerik:RadWindow
NavigateUrl = "../../Orders/Orderitem.aspx"
VisibleOnPageLoad = "false" OnClientClose="OnClientclose"
OffsetElementID = "offsetElement"
ID = "itemWindow" Modal="true" Animation="None" VisibleStatusbar="false"
Top = "200" VisibleTitlebar="false"
Left = "200" Overlay="true"
Height="600" Width="550"
runat="server"></telerik:RadWindow>
<telerik:RadWindow
NavigateUrl = "../../Orders/deleteitem.aspx"
VisibleOnPageLoad = "false" OnClientClose="OnDeleteClientclose"
OffsetElementID = "offsetElement"
ID = "deleteWindow" Modal="true" Animation="None" VisibleStatusbar="false"
Top = "10" VisibleTitlebar="false"
Left = "10"
Height="10" Width="10"
runat="server"></telerik:RadWindow>
<telerik:RadWindow
NavigateUrl = "../../Orders/Orderitem.aspx"
VisibleOnPageLoad = "false"
OffsetElementID = "offsetElement" OnClientClose="OnClientclose"
ID = "photoWindow" Animation="None" VisibleStatusbar="true"
Top = "200" VisibleTitlebar="false"
Left = "360" Overlay="true"
Height="600" Width="830" Modal="true"
runat="server"></telerik:RadWindow>
<telerik:RadWindow
NavigateUrl = "../../Orders/Addimage.aspx"
VisibleOnPageLoad = "false" OnClientClose="OnAddClientClose"
OffsetElementID = "offsetElement"
ID = "addWindow" Animation="None" VisibleStatusbar="true"
Top = "100" VisibleTitlebar="true"
Left = "150" Overlay="false"
Height="650" Width="550" Modal="true"
runat="server"></telerik:RadWindow>
<telerik:RadWindow
NavigateUrl = "DummyWindow.aspx"
VisibleOnPageLoad = "false"
OffsetElementID = "offsetElement"
ID = "DummyWindow" Animation="None" VisibleStatusbar="true"
Top = "200" VisibleTitlebar="false"
Left = "360" Overlay="false"
Height="100" Width="100"
runat="server"></telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>
The "addWindow" window has the upload module on it. It is called by "photoWIndow". Does this provide any insight on what is occuring. Again, this problem is only in IE6.
Thanks.