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

RadMenu overlays RadWindow

1 Answer 52 Views
Menu
This is a migrated thread and some comments may be shown as answers.
DogBizPro
Top achievements
Rank 1
DogBizPro asked on 05 May 2016, 04:16 PM

I am having issues with the RadMenu and RadWindow working together. As you can see from the attached the RadMenu does not 'darken' and go into the background like the rest of the screen when the RadWindow is displayed.

How can this be fixed?

1 Answer, 1 is accepted

Sort by
0
Dimitar
Telerik team
answered on 06 May 2016, 07:26 AM
Hi,

You are experiencing this issue, because the z-index of the RadMenu on your page is greater than the z-index of the RadWindow. In order to fix the issue, you need to overwrite the RadMenu z-index value with CSS. E.g. :

<style type="text/css">
    html body .RadMenu {
        z-index: 2000;
    }
</style>

You may need to either increase the RadWindow z-index or decrease the RadMenu z-index until the value for the RadWindow is greater than the one for the RadMenu.

Regards,
Dimitar
Telerik
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
Tags
Menu
Asked by
DogBizPro
Top achievements
Rank 1
Answers by
Dimitar
Telerik team
Share this question
or