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

[Solved] RadEditor Z-Index Problem

2 Answers 177 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
vivekanandan
Top achievements
Rank 1
vivekanandan asked on 17 Nov 2009, 07:32 AM

hi
i am using Latest Telerik RadControls for ASP.NET AJAX Q2 2009 SP1
When I open the ImageManager managers  they appear behind the RadMenu.  I have adjusted the z-index on the RadMenu

.RadMenu_Dynamics_Context  
{  
    background: none;  
    border:0;  
    z-index:8000 !important;  

but the result is the same.

Thanks and regards
Vivekanandan.R

2 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 17 Nov 2009, 11:43 AM
Hello Vivekanandan,

Try setting the z-index of the RadMenu to a lower value(3000) as shown below:
aspx:
 <telerik:RadMenu ID="RadMenu1" style="z-index:3000" runat="server"
      <Items> 
          .... 
      </Items> 
 </telerik:RadMenu> 

Thanks
Princy.
0
Svetlina Anati
Telerik team
answered on 17 Nov 2009, 04:00 PM
Hello vivekanandan,

I already answered your other thread and my reply was basically the same approach as Princy suggested. However, for your convenience and for others who might encounter the same problem I pasted it below along with some additional information about the reason for the behavior and also some useful resources.

The Imagemanager as all RadEditor's dialogs is actually a RadWindow and the RadMenu's z-index is bigger than the one of RadWindow. You can set proper z-indexes in order to get the desired behavior.

Example:




<telerik:RadMenu ID="myMenu" runat="server" Style="z-index: 2000" >
  
.............. 
  
 </telerik:RadMenu>

You can find a more detailed KB article below:

http://www.telerik.com/support/kb/aspnet-ajax/window/show-radwindow-above-radmenu.aspx

Information about RadControls' z-indexes values is available below:

http://www.telerik.com/help/aspnet-ajax/controlling-absolute-positioning-with-zindex.html

All the best,
Svetlina
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.
Tags
General Discussions
Asked by
vivekanandan
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Svetlina Anati
Telerik team
Share this question
or