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
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.