
Reiner Ebel
Top achievements
Rank 1
Reiner Ebel
asked on 06 Sep 2009, 02:23 PM
Hello,
I used the RadFileExplorer in a Panel for ModalPopup. It works good. When I clicked by the Upload button, then the Upload Dialog is not in front from the FileExplorer. How can I solve this problem?
Thanks
Reiner
I used the RadFileExplorer in a Panel for ModalPopup. It works good. When I clicked by the Upload button, then the Upload Dialog is not in front from the FileExplorer. How can I solve this problem?
Thanks
Reiner
5 Answers, 1 is accepted
0
Hello Reiner,
The reason for this problem is the z-index of the modal popup - you need to set the dialog's z-index to a higher value.
Since RadFileExplorer uses RadWindowManager to show the upload dialog, the easiest way is to set this value from the codebehind.
For example:
All the best,
Georgi Tunev
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
The reason for this problem is the z-index of the modal popup - you need to set the dialog's z-index to a higher value.
Since RadFileExplorer uses RadWindowManager to show the upload dialog, the easiest way is to set this value from the codebehind.
For example:
protected void Page_Load(object sender, EventArgs e) |
{ |
RadFileExplorer1.WindowManager.Style.Add("z-index", "20000"); |
} |
All the best,
Georgi Tunev
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0

RAM
Top achievements
Rank 1
answered on 17 May 2012, 07:36 PM
As mentioned, i am using
FileExplorer1.WindowManager.Style.Add("z-index", "20000"); It works in IE but not in chrome. Is there anything else i need to set.
Thanks.
0
Hello,
It seems that in Chrome the zIndex of the ModalPopupExtender is 100,000 while in InternetExplorer is 10,000. To avoid the issue for Chrome as well you just need to set the z-index value of the RAdFileExplorer's WindowManager to be higher than 100,000.
Kind regards,
Dobromir
the Telerik team
It seems that in Chrome the zIndex of the ModalPopupExtender is 100,000 while in InternetExplorer is 10,000. To avoid the issue for Chrome as well you just need to set the z-index value of the RAdFileExplorer's WindowManager to be higher than 100,000.
Kind regards,
Dobromir
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0

RAM
Top achievements
Rank 1
answered on 21 Sep 2012, 03:15 AM
Team, when i try to drag and drop files between folders with file explorer in a popup window the drag icon is going behind, is there any solution for that.
Thanks, Ram
Thanks, Ram
0
Hi Ram,
In order to workaround this behavior you need to add the followind CSS style:
The above used ID is being created depending on the RadFileExplorer's ID, and this is the recommended way to be used.
Vesi
the Telerik team
In order to workaround this behavior you need to add the followind CSS style:
<
telerik:RadCodeBlock
runat
=
"server"
>
<
style
type
=
"text/css"
>
#<%=RadFileExplorer1.ClientID%>_grid_DraggedRows
{
z-index: 100002 !important;
}
</
style
>
</
telerik:RadCodeBlock
>
The above used ID is being created depending on the RadFileExplorer's ID, and this is the recommended way to be used.
All the best,
Vesi
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.