I have a screen that is the Fileexporer and allow users to upload new files. It work fine in IE and Firefox but I have a screen issue in Crome
I have included the screen shots. The first on is when the screen opens, the second is whenI drop 2 files on the screen. If I use the select button it does the same thing. If I load them one at a time it only shows the last fileI uploaded. If I click on the window header the whole screen becomes visible. It is like parts of the screen are behind the other popup.
In the main screen I have the following code for the window manager
then for the Filemanager screen I have the folloing code.
I have tried altering z order and other things but it seems to have issues with Chrome. Has anyone else had this issue?
I have included the screen shots. The first on is when the screen opens, the second is whenI drop 2 files on the screen. If I use the select button it does the same thing. If I load them one at a time it only shows the last fileI uploaded. If I click on the window header the whole screen becomes visible. It is like parts of the screen are behind the other popup.
In the main screen I have the following code for the window manager
<
telerik:RadWindowManager
ID
=
"RadWindowManager1"
runat
=
"server"
Style
=
"z-index: 7001"
>
<
Windows
>
<
telerik:RadWindow
ID
=
"FileManager"
runat
=
"server"
Title
=
""
Height
=
"600px"
Width
=
"800px"
ReloadOnShow
=
"True"
Modal
=
"True"
Skin
=
"WebBlue"
VisibleStatusbar
=
"false"
ShowContentDuringLoad
=
"false"
/>
</
Windows
>
</
telerik:RadWindowManager
>
then for the Filemanager screen I have the folloing code.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="FileManager.aspx.cs" Inherits="ComplianceClient.MarketingScreens.FileManager" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
runat
=
"server"
>
<
title
></
title
>
<
telerik:RadCodeBlock
ID
=
"RadCodeBlock1"
runat
=
"server"
>
<
style
type
=
"text/css"
>
#<%=RadFileExplorer1.ClientID%>_uploadContainer
{
overflow-x: hidden !important;
}
</
style
>
</
telerik:RadCodeBlock
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
>
</
telerik:RadScriptManager
>
<
div
>
<
asp:Literal
ID
=
"lblScript"
runat
=
"server"
></
asp:Literal
>
<
asp:Label
ID
=
"lblErrorMessage"
runat
=
"server"
Font-Bold
=
"True"
ForeColor
=
"Red"
></
asp:Label
>
<
telerik:RadFileExplorer
ID
=
"RadFileExplorer1"
runat
=
"server"
Skin
=
"WebBlue"
Width
=
"100%"
style
=
"z-index:7001"
>
<
Configuration
EnableAsyncUpload
=
"true"
/>
</
telerik:RadFileExplorer
>
</
div
>
</
form
>
</
body
>
</
html
>
I have tried altering z order and other things but it seems to have issues with Chrome. Has anyone else had this issue?