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

WindowManager vs RadMenu Z-Index

2 Answers 69 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Alfred Ortega
Top achievements
Rank 2
Alfred Ortega asked on 23 Feb 2009, 02:56 PM
I need some help addressing the following issue.  I have a grid that uses a pop-up for editing the data as done in the example (http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/popupeditform/defaultcs.aspx) and it works just fine.  However there is a radMenu across the top of my page that remains "above" the popup window.   Obviously I would like that in the background as well - please advise as to how this can be done.

Thanks in advance,
Al

2 Answers, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 24 Feb 2009, 07:25 AM
Hi Alfred,

You can achieve this by setting the z-index of the edit pop-up window to higher value than RadMenu z-index. Try the following ASPX to set the z-index of pop-up window of RadGrid.

ASPX:
<MasterTableView autogeneratecolumns="False" CommandItemDisplay="Top" EditMode="PopUp" datasourceid="SqlDataSource1">  
<EditFormSettings PopUpSettings-ZIndex="9000"></EditFormSettings> 
    <Columns> 
      . . .  
    </Columns> 
</MasterTableView> 

Refer the link for more information about z-index values of different Telerik controls.
Controlling absolute positioning with z-index

Thanks,
Princy.
0
Alfred Ortega
Top achievements
Rank 2
answered on 24 Feb 2009, 07:44 PM
Thanks for the answer it worked great.  I wouldn't have guessed that a z-Index conflict between the menu and the window would be resolved by a setting the grid.  Ugh.

Al
Tags
General Discussions
Asked by
Alfred Ortega
Top achievements
Rank 2
Answers by
Princy
Top achievements
Rank 2
Alfred Ortega
Top achievements
Rank 2
Share this question
or