ExtJs 中的无模式对话框
我想在 ExtJS 中实现无模式对话框。
例如,新的弹出窗口/面板不应将原始屏幕保留为非活动状态。两者应该可以同时访问。
我们怎样做呢?
I want to implement modeless dialog boxes in ExtJS.
For exapmle, the new pop-up window/panel should not leave the originating screen as inactive. Both should be accessible at the same time.
How do we that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ext.Window 上的模态选项默认为 false,因此只要不包含该选项,对话框就不会是模态的。
The modal option on Ext.Window defaults to false, so just don't include that option and the dialogs won't be modal.