在 ExtJS4 中获取对 Ext.MessageBox 的底层 Ext.Window 元素的引用的替代方法
在 ExtJS 3 中,我使用方法 getDialog()
来获取 Ext.MessageBox 的底层 Ext.Window
元素的引用
在 ExtJS 4 中,没有这样的方法可以让我得到这个参考。
部分代码,我现在正在使用:
var msgBox = Ext.MessageBox.getDialog()
还有其他方法来获取此参考吗?
In ExtJS 3 I am using method getDialog()
to get reference of underlying Ext.Window
element of Ext.MessageBox
In ExtJS 4 there is no such method which can get me this reference.
Part of code, I am using now:
var msgBox = Ext.MessageBox.getDialog()
Is there any other way to get this reference?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您从 Ext.MessageBox 调用静态方法时,它会返回对对话框的引用。因此您可以像使用其他窗口一样使用它。例如:(
更新)我刚刚发现 Ext.MessageBox 是对窗口本身的引用。所以你可以写:
When you call static method from
Ext.MessageBox
it returns reference to the dialog. So you can use it like any other window. For example:(Update) I've just discovered that
Ext.MessageBox
is reference to the window itself. So you can write: