0
我有如下代碼,ExtJs的REF屬性
window = Ext.extend(Ext.Window, {
initComponent: function(){
Ext.applyIf(this,{
fbar: {
xtype: 'toolbar',
items: [{
xtype: 'button',
id: 'button1',
text: 'button1'
ref: ??
}
]
},
items:[{
xtype: 'form',
items: [{
layout: 'form',
items:[{
xtype: 'field'
id: 'field1'
ref: ??
}]
}]
}]
})
}
})
我能具有用於REF屬性字段和上述按鈕,這樣我可以與窗口變量使用?請幫助我。
我試着'../../button',但無法通過窗口變量訪問。