0

我创建了延迟加载组合框,它通过输入的值查询数据。但是当从数据库加载值并且我单击展开列表按钮时,我遇到了问题,它发送带有空掩码的请求而不是获取组合框的值,看起来,空值是由于某种原因而被采用的。

这是我的组合框:

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()返回该值,但由于某种原因,未根据请求将其设置为存储参数掩码。

4

3 回答 3

1

“存储”属性桅杆是对此类 Ext.data.Store 对象的引用:

store: Ext.create('TaxCodesStore', { ... });

还需要配置“displayField”和“valueField”属性。

更新

    {
        xtype : 'lazycombo',
        minChars : 1,
        pageSize : 20,
        id : 'tax-code-combo',
        store : new TaxCodesStore(), // <---
        triggerAction : 'all',
        displayField: 'origId', // <---
        valueField: 'value' // <---
    }
于 2013-08-27T12:06:06.370 回答
1

也许会帮助你

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');

})
于 2013-08-27T15:52:01.380 回答
1

调试源代码后,我发现问题出在那儿。

这是因为triggerAction : 'all',我删除了它,现在我的组合很完美

于 2013-08-28T06:03:22.303 回答