gpt4 book ai didi

gridview - 如何获取值以从组合框 extjs 4 传递参数

转载 作者:行者123 更新时间:2023-12-02 00:15:16 25 4
gpt4 key购买 nike

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

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

最佳答案

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

change:function (field, newValue, oldValue, options) {
console.log('combo changed to ' + newValue + ' from ' + oldValue);
gridPanel.store.load({params:{State:this.value}});
}

关于gridview - 如何获取值以从组合框 extjs 4 传递参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13460973/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com