コンボボックスとテキストフィールドを含む次のコンテナがあります(コンボ/テキストフィールドのペアを動的に追加する追加機能もあります):
{ xtype: 'container', layout: 'hbox', style: {margin: '0px 0px 0px 330px'},
items: [
{ xtype: 'combobox', padding: 5, id: 'criteria_1_dropdown', store: filters},
{ xtype: 'textfield', padding: 5, id: 'criteria_1_input', width: 145}
]
}
そしてボタン:
{ xtype: 'button', id: 'clear_criteria', iconCls: 'clear' }
私がやりたいのは、クリック時にすべてのコンボ/テキストフィールドコンポーネントをクリアするためにクリアボタンを有効にすることです.これを達成するために独自のコントローラが必要だとは思いません. 何か案は?