GWT 中的对话框深度(z 索引)
有许多 GWT 对话框,第一个总是位于底部,新的对话框在顶部创建。 我想要获得的是一种在单击此类对话框时将其置于顶部的方法。 我还没有找到处理深度的 GWT 方法(与 CSS 标签 z-index
相关的东西,但它缺少一些文档)。
Having many GWT DialogBox'es, the first one always stays at the bottom and new ones are created on top.
What I am trying to obtain is a way to bring one of such dialogs on top when it is clicked.
I haven't found the GWT approach to handle depth (something related to a CSS label z-index
but it lacks some documentation).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想,你可以使用这样的东西:
I think, you can use something like this:
您还可以为系统中的所有
DialogBox
定义CSS规则:(如果您不使用
CssResource
,请删除@external引用)。这样,所有弹出窗口、对话框和弹出眼镜都将位于页面中的其他项目之上。确保没有其他项目的 z-index 高于您选择的值(在我的示例中为 1000)。
You can also define a CSS rule for all
DialogBoxes
in the system:(Remove the @external references if you are not using
CssResource
).That way all your popups, dialogboxes and popup glasses will be over other items in the page. Make sure no other item has z-index above the value you choose (in my example, 1000).