我的代码如下,
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',但无法通过窗口变量访问。
答案 0 :(得分:0)
我自己想一想。
button1的ref为“../button”,字段的ref为“../../ fieldname”...窗口被调用为,
testWindow = new window();
按钮1可以访问, testWindow.button
和该领域一样 testWindow.fieldname