如何在 zkoss 中创建具有应用程序范围的窗口?
在我的 zkoss 应用程序中,我有一个主父窗口,其中有一个 iframe 子窗口。在 iframe 中还有另一个窗口,单击按钮时会在其中填充模式窗口。但该模式窗口仅禁用第二个窗口。不是主窗口。我怎样才能让它在单击按钮时完全禁用..?
In my zkoss application , i have a main parent window having an iframe child. In the iframe there is another window in which a modal window is populating on clicking a button. but that modal window disabling only the second window. not the main window.how can i make it disable fully on click the button..?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
Executions.createComponent(...)
而不是iFrame,所以所有内容都将位于同一个桌面和模式窗口上
将禁用一切。
阅读此也应该有所帮助。
Use
Executions.createComponent(...)
instead of iFrame,so everything will be on the same Desktop and the modal window
will disable everything.
Reading this should help too.