This is a migrated thread and some comments may be shown as answers.

Rad Editor absolute positioned sub windoes issue

1 Answer 42 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Shane Rosario
Top achievements
Rank 1
Shane Rosario asked on 17 May 2011, 10:45 PM
I have a issue where I have the rad editor absolute positioned. When the editors sub windows popup (ex: Hyperlink manager) they are appearing behind the editor. If I drop the z_index down to a low number then they work fine, but that for me would cause a issue. I want to give the editor a higher z-index to make sure of no issues, since other objects can also be absolute positioned on the page and their is a risk of the number becoming higher than the editor z-index. Is there a way to change the sub windows z-index from code or javascript or even a css file to have higher z-indexes?

The same page worked great for years using the 6.5 version of the editor and I never ran into this problem with that editor. However IE 9 doesn't play nice with that version.

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 20 May 2011, 09:52 AM
Hello Shane,

You can try to change the z-index of RadWindow based dialogs of RadEditor for ASP.NET AJAX using the following CSS classes:

.RadWindow.RadWindow_Default.rwNormalWindow.rwTransparentWindow
{
z-index: 110000 !important;
}
.RadWindow.RadWindow_Default.rwNormalWindow.rwTransparentWindow.rwInactiveWindow
{
z-index: 10990 !important;
}

The above classes work for the Default skin. If you use another skin you should update the Default string in them with the used skin name.

Best wishes,
Rumen
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

Tags
Editor
Asked by
Shane Rosario
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or