0

我有如下代码,

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”,但无法通过窗口变量访问。

4

1 回答 1

0

我自己想。

button1 的引用将是“../button”,字段的引用将是“../../fieldname”...窗口被调用为,

测试窗口 = 新窗口();

并且 button1 可以作为 testWindow.button 访问

字段为 testWindow.fieldname

于 2012-07-04T09:21:40.450 回答