我有如下代码,
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 属性提供什么,以便我可以与 window 变量一起使用?请帮助我。
我尝试使用“../../button”,但无法通过窗口变量访问。