我有一个像这样的窗口类:
myWindow = Ext.extend(WindowAddItemUi, {
initComponent: function() {
WindowAddComponentPublic.superclass.initComponent.call(this);
},
close : function() {
this.superclass().close(); //not working
myWindow.superclass().close(); //also not working
}
});
我试图覆盖窗口的关闭方法并调用窗口的超级方法关闭,但它似乎不起作用。
有谁知道如何正确调用它?