誰でも、extjs 4.2用のコンポーネントを作成するのを手伝ってください
Ext.define('mycomponent', {
extend:'Ext.form.field.Display',
alias: 'widget.mycomponent',
initComponent: function() {
this.setValue("some value") // not setup
this.callParent(arguments);
console.log(this)
},
})
私は試します
Ext.getCmp(this.id).setValue("some")
しかし、htmlオブジェクトは存在せず、レンダリング前のイベントなどは実行されていません。どのように値を設定できますか?