私は以下のようなコードを持っています、
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」で試しましたが、ウィンドウ変数からアクセスできませんでした。