Search code examples
c#.netasp.nettelerik

telerik radMenu shows through to a radWindow


I have a radMenu on the main site.master form which shows on a page. The page has a radGrid with a button to open a radWindows that shows a report. When the radWindow opens everything works great but the radMenu shows through onto the Window. How do I prevent the menu from showing through on the window.

alt text
(source: rjmueller.net)


Solution

  • The default RadMenu z-index is 7000 whereas the default RadWindow z-index is 3000 (reference here). Change the z-index of the RadMenu to be less than the RadWindow (or the contrary as you prefer).

    <telerik:RadMenu runat="server" style="z-index: 2900" />