我正在寻找一种使用 extjs refs 系统在我的窗口中引用两个控件的好方法。
这是我的视图代码:
Ext.define('App.view.Filter',{
extend: 'Ext.window.Window',
alias: 'widget.myfilter',
items: [
{
xtype: 'container',
items: [
{
xtype: 'combobox'
},
{
xtype: 'textfield'
},
{
xtype: 'button',
text: 'Search',
action: 'search'
}
]
}
]
});
我想访问组合框和文本字段。我第一次尝试这样做:
refs: [
{
ref: 'combo',
selector: 'myfilter combobox:first'
},
{
ref: 'filter',
selector: 'myfilter textfield:first'
}
],
但是“过滤器”也得到了组合框。