-1
任何人,請幫助我創建的組件的ExtJS的4.2自定義組件ExtJS的,不行的setValue
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對象不存在,事件beforerender e.t.c.沒有運行。我如何設定價值?
如果我設置「名稱」屬性,我怎麼能得到它的initComponent方法? –
'var name = this.name;' –
但我需要獲取名稱的值,該字段在窗體中,並且我從後端綁定窗體(ajax) –