3 Answers, 1 is accepted
0
Accepted
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
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:
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
commented on 26 Oct 2021, 09:15 PM
Top achievements
Rank 1
Veteran
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
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
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!