ext js 3.4でスーパークラスを正常に呼び出す方法を知っている人はいますか?私のサンプルコードでは、スーパークラスをパネルで動作させることができないようです。
MyWindow = Ext.extend(MyWindowUi, {
initComponent: function() {
MyWindow.superclass.initComponent.call(this);
this.createTextField();
},
createTextField : function() {
var p = new Ext.Panel({
title: 'somepanel',
initComponent: function() {
console.log('init component');
console.log(this);
this.superclass.initComponent.call(this); //NOT WORKING??
}
});
this.add(p);
}
});