我创建了延迟加载组合框,它按输入的值查询数据。但是我从数据库加载值时出现问题并且我点击展开列表按钮,它发送带空掩码的请求而不是取组合框的值,看来,由于某种原因,该值为空值。
这是我的组合框:
editor : {
xtype : 'lazycombo',
minChars : 1,
pageSize : 20,
id : 'tax-code-combo',
store : 'TaxCodesStore',
triggerAction : 'all'
}
这是请求参数:
limit 20
mask
organizationId 108
start 0
掩码为空而不是设定值之前。
感谢您的帮助
我的商店:
TaxCodesStore = Ext.extend(Ext.data.JsonStore, {
constructor : function(cfg) {
cfg = cfg || {};
TaxCodesStore.superclass.constructor.call(this, Ext.apply({
storeId : 'TaxCodesStore',
api : {
read : 'taxCode/getPagedList'
},
root : 'data',
baseParams : {
organizationId : 0
},
idProperty : 'taxCode',
fields : [ {
mapping : 'taxCode',
name : 'value'
}, {
mapping : 'taxCode',
name : 'label'
}, {
name : 'orgId',
type : 'int'
}, {
name : 'percentageRate',
type : 'int'
} ]
}, cfg));
}
});
new TaxCodesStore();
更新
我在调查后发现,组合框方法getValue()
返回值,但出于某种原因未在请求时设置为存储参数掩码。
答案 0 :(得分:1)
“store”属性mast是对此类Ext.data.Store对象的引用:
store: Ext.create('TaxCodesStore', { ... });
还需要配置“displayField”和“valueField”属性。
<强> UPD 强>:
{
xtype : 'lazycombo',
minChars : 1,
pageSize : 20,
id : 'tax-code-combo',
store : new TaxCodesStore(), // <---
triggerAction : 'all',
displayField: 'origId', // <---
valueField: 'value' // <---
}
答案 1 :(得分:1)
也许this会帮助你
HTML
<div id="cmb"></div>
的Javascript
Ext.onReady(function(){
var store = Ext.create('Ext.data.Store', {
fields: ['id', 'attr'],
proxy: {
type: 'ajax',
api: {
read: '/someurl'
},
reader: {
type: 'json',
root: 'data',
successProperty: 'success',
totalProperty: 'total'
}
}
});
var cmb = Ext.create('Ext.form.field.ComboBox', {
triggerAction: 'all',
store: store,
displayField: 'attr',
valueField: 'id',
queryMode: 'remote',
listeners: {
beforequery: function(){
this.getStore().getProxy().extraParams.mask = this.getValue();
}
}
});
cmb.render('cmb');
})
答案 2 :(得分:0)
调试源后,我发现存在问题。
这是因为triggerAction : 'all',
我删除了它,现在我的组合完美无缺