任何人,请帮助我为 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 对象不存在,渲染前的事件等未运行。我如何设定价值?