3

我有一个像这样的窗口类:

    myWindow = Ext.extend(WindowAddItemUi, {

    initComponent: function() {

        WindowAddComponentPublic.superclass.initComponent.call(this);

    },

    close : function() {
        this.superclass().close(); //not working
        myWindow.superclass().close(); //also not working

    }

   });

我试图覆盖窗口的关闭方法并调用窗口的超级方法关闭,但它似乎不起作用。
有谁知道如何正确调用它?

4

2 回答 2

3

是的,我终于让它工作了。这是我修复它的解决方案。

close : function() {
 this.superclass().close.call(this); //this works
 // myWindow.superclass.close.call(this); //this also works 
}
于 2013-04-17T10:37:33.240 回答
3
close: function() {
    this.callParent();
}
于 2013-04-15T17:27:54.027 回答