jqGrid 和 Wijmo WijMenu 的 z 索引问题
我正在尝试将基于 jQuery 的 Wijmo WijMenu 控件与 jqGrid 一起使用,以创建动态网格工具栏。
让菜单显示效果很好。但是,我的 menuitem1 有一个子菜单,当我将鼠标悬停在“menuitem1”上时,该子菜单落后于 jqGrid。
我尝试在菜单和各个菜单项上设置 z-Index,但没有成功。此行为发生在 IE9、Chrome、FF 和 Safari 上。当我打开 IE9 的兼容模式时它确实有效,这让我认为它可能与 z-index 有关......但我不确定。我觉得我错过了一些明显的东西。
我创建了一个 jsFiddle 来演示我的问题。
谁能帮我让子菜单落在 jqGrid 前面?
预先感谢您的任何帮助/建议。
I am trying to use the jQuery-based Wijmo WijMenu control with jqGrid in order to create a dynamic grid toolbar.
Getting the menu to appear works fine. However, my menuitem1 has a submenu, and this submenu falls behind the jqGrid when I hover over 'menuitem1'.
I've tried setting the z-Index on the menu and the individual menu items, but with no luck. This behavior happens on IE9, Chrome, FF and Safari. It does work when I turn compatibility mode on with IE9, which makes me think it may have something to do with the z-index...but I'm not sure. I feel like I'm missing something obvious.
I created a jsFiddle to demonstrate my issue.
Can anyone help me get the submenu to fall in front of the jqGrid?
Thank you in advance for any help/advice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这不是 z-index 问题。 .ui-jqgrid .ui-userdata 上有溢出:隐藏。尝试使其溢出:可见。
虽然我不确定这样做是否会导致网格出现问题。
It's not a z-index issue. The .ui-jqgrid .ui-userdata has overflow:hidden on it. Try making it overflow: visible.
Although I'm not sure if it will cause problems on the grid when doing this.
更改你的CSS,
删除
overflow:hidden
它隐藏了你的菜单。Change your CSS from
Removing the
overflow:hidden
It was hiding your menu.