eyecon 颜色选择器在编辑表单上的 jqgrid (jqueryui) 对话框后面弹出

发布于 2024-10-18 09:29:15 字数 127 浏览 0 评论 0原文

我想知道是否有人使用 eyecon 颜色选择器和 jqueryui 对话框?一切正常,但每当用户单击文本框以显示颜色选择器时,颜色选择器就会出现在 jqueryui 对话框后面。它似乎与 z-index 属性有关。任何帮助将不胜感激。谢谢。

I would like to know if has anyone used eyecon color picker with jqueryui dialog? Everything works fine but whenever the user clicks on the textbox to show the color picker, the color picker appears behind the jqueryui dialog. It seems related to z-index property. Any help would be appreciated. Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流殇 2024-10-25 09:29:15

编辑 colorpicker.css 并指定 z-index:

.colorpicker {
    width: 356px;
    height: 176px;
    overflow: hidden;
    position: absolute;
    background: url(../images/colorpicker_background.png);
    font-family: Arial, Helvetica, sans-serif;
    display: none;
    z-index:1005;
}

edit colorpicker.css and specify a z-index:

.colorpicker {
    width: 356px;
    height: 176px;
    overflow: hidden;
    position: absolute;
    background: url(../images/colorpicker_background.png);
    font-family: Arial, Helvetica, sans-serif;
    display: none;
    z-index:1005;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文