extjs refs システムを使用して、ウィンドウ内の 2 つのコントロールを参照する良い方法を探しています。
ここに私のビューコードがあります:
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'
}
],
しかし、「フィルター」もコンボボックスを取得します。