私は次のようなウィンドウクラスを持っています:
myWindow = Ext.extend(WindowAddItemUi, {
initComponent: function() {
WindowAddComponentPublic.superclass.initComponent.call(this);
},
close : function() {
this.superclass().close(); //not working
myWindow.superclass().close(); //also not working
}
});
ウィンドウの close メソッドを上書きして、ウィンドウのスーパーメソッド close を呼び出そうとしていますが、うまくいかないようです。
誰かがそれを正しく呼び出す方法を知っていますか?