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

Menu + Splitter hides the pop ups

3 Answers 183 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Jared
Top achievements
Rank 1
Jared asked on 17 Nov 2011, 04:04 PM
Hello,

Menu pop-ups are hidden,
http://i43.tinypic.com/15xmufa.png

Tried setting z-Index.

Thanks,

Jared
Chrome 15 // FF + Win7

3 Answers, 1 is accepted

Sort by
0
Accepted
Dimo
Telerik team
answered on 17 Nov 2011, 04:58 PM
Hello Jared,

The observed issue is expected in default scenarios. In order to resolve it, the following styles must be applied to the Splitter pane (div) that contains the menu:

overflow: visible;
z-index: 1;

Regards,
Dimo
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
1
Will
Top achievements
Rank 1
answered on 30 May 2014, 12:22 PM
Sorry but Dimo's answer is wrong.   Take a look at:

http://telerik.org/forums/adjust-z-index-or-some-other-magic

Audrey's suggestion has worked for me:
.k-splitter .k-scrollable
{
    overflow: visible;
}

 
Mark
Top achievements
Rank 1
Veteran
commented on 26 Oct 2021, 09:15 PM

I know this is an old post but still relevant in newest release. I agree here accept my panes are not scrollable so went with the following which worked for me. Including z-index: 1 breaks the fix in my case.

.k-splitter .k-pane
{
    overflow: visible;
}

0
Dimo
Telerik team
answered on 30 May 2014, 12:36 PM
Hi Will,

My answer suggests exactly the same thing as the code you have quoted, so I don't see anything wrong here. In addition, if you omit the z-index style, you may still have problems in particular scenarios, because subsequent Splitter panes create higher stacking contexts and the Menu groups cannot overlap them.

Regards,
Dimo
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
Tags
Menu
Asked by
Jared
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Will
Top achievements
Rank 1
Share this question
or