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

LinkManager tool popup location problem

1 Answer 87 Views
Editor
This is a migrated thread and some comments may be shown as answers.
IrishManInUSA
Top achievements
Rank 1
IrishManInUSA asked on 22 Jul 2008, 07:34 PM
I have the radeditor inside of a modal popup window.  When I click the LinkManger or ImageManager the popup window for these controls is behind the modal popup and inaccessible until you close the modal window.  I tried to set the tool's z property to 10000.  When I point to the popup using IE developer toolbar, it says that the popup z index is 10000.  Is there a way to get the tool popups to display on top of the modal window?

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 23 Jul 2008, 10:48 AM
Hi John,

A number of Telerik controls render with absolute positioning and have their default z-indexes as shown below:

  • RadToolTip - 8000
  • RadMenu - 7000
  • RadCombo - 6000
  • RadDatePicker - 5000
  • RadColorPicker - 4000
  • RadWindow - 3000
  • RadSplitter - 2000
  • RadDock - 1000
Because the value of the modal popup ajax window has a larger index than RadWindow, it is displayed over the editor's dialogs. To fix the problem you should override the RadWindow default z-index with the following class:

<style>
.radwindow.radwindow_Default.normalwindow.transparentwindow
{
 z-index:13000 !important;
}
</style>

The Default string in the class name, represents the used skin by the editor.

Best regards,
Rumen
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Editor
Asked by
IrishManInUSA
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or