gpt4 book ai didi

extjs - 动态地在商店中使用额外的参数

转载 作者:行者123 更新时间:2023-12-04 02:36:03 26 4
gpt4 key购买 nike

我有一个表格。在表单中,我使用的是 comboBoxstore .

{
xtype: 'combobox',
id: 'SubContractor',
name: 'SubContractor',
fieldLabel: 'Sub Contractors',
selectOnFocus: true,
editable: false,
displayField: 'FirstName',
store: 'jsonGetSubContractorsList',
typeAhead: true,
allowBlank: false,
typeAheadDelay: 20,
valueField: 'SubContractID',
width: 440,
labelWidth: 229
}

在商店中,在代理中我有静态 extraParams ,它的工作。
proxy: {              
type: 'ajax',
url: '/admin/contract/subcontractors/jsonsubcontractorslist',
extraParams: {
cid : 34
},
reader: {
type: 'json',
root: 'data'
}
},

但我不明白,如何将契约(Contract) ID 动态发送到我的商店。

最佳答案

store.getProxy().extraParams = {
foo: 'bar'
};
store.load();

关于extjs - 动态地在商店中使用额外的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11896163/

26 4 0
文章推荐: Ajax Bootstrap 弹出框 : Object # has no method 'popover'