3

我有一个组合框和一个网格。在组合框中选择一个值时,我需要获取该值并将其作为参数传递给我的控制器,以便它可以更新我的网格。请帮忙。这是我商店的代理...

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'
                }
4

1 回答 1

3

在你的组合框中试试这个:

change:function (field, newValue, oldValue, options) {
    console.log('combo changed to ' + newValue + ' from ' + oldValue); 
    gridPanel.store.load({params:{State:this.value}});
}
于 2012-11-19T21:22:57.700 回答