コンボボックスとグリッドがあります。コンボボックスで値を選択したら、その値を取得し、それをパラメーターとしてコントローラーに渡して、グリッドを更新できるようにする必要があります。助けてください。これは私の店のプロキシです...
proxy: {
type: 'ajax',
scope: this,
url: 'myController/getValue',
extraParams: {
State: Ext.getCmp('mycombo').getValue() //this is not possible
},
これが私のコンボボックスです。
items: [{
xtype: 'combobox',
id: 'mycombo',
scope: this,
editable: false,
store: this.store,
fieldLabel: 'Select State',
displayField: 'State',
queryMode: 'remote',
labelWidth: 125,
listeners: {
scope: this,
store.load()
}
valueField: 'State'
}