3

我有一个 ExtJs 组合框。它的商店使用 JSON 加载(使用我的商店)。我想将所有值加载到存储中,然后使用组合文本字段中输入的文本过滤它们。

我不希望我的组合每次输入内容时都重新加载它的商店。我怎样才能做到这一点?还有其他事情,然后我第一次尝试从组合框中选择元素,它从服务器重新加载数据。PS:我商店中的侦听器,用于从服务器中选择数据的第一个元素。谢谢。

这是我的商店课程:

Ext.define('KP.store.account.street', {
    extend: 'Ext.data.Store',
    model: 'KP.model.account.combo',
    autoLoad: true,

    proxy: {
        type: 'ajax',

        api: {

            read: '/account/combostreetdata'
        },
        reader: {
            type: 'json',
            root: 'combolist',
            successProperty: 'success',
            totalProperty: 'total'
        }
    },

    listeners: {
        'load': function (street_list) {
            var street_combo = Ext.getCmp('street');
            street_combo.select(street_list.getAt(0));
        }
    }
});

我的观点:

{
    id: 'street',
    xtype: 'combobox',
    width: 700,
    name: 'street',
    editable: true, 
    mode: 'local', 
    typeAhead: true, 
    emptyText: '?????',
    fieldLabel: '???',
    labelWidth: 120,
    size: 72,
    x: 20,
    y: 180,

    displayField: 'string_value',
    valueField: 'long_key',
    store: street_list
},
4

1 回答 1

0

您有一个 ComboBox 配置错误。

不是mode: 'local',但是queryMode: 'local',

我在组合中使用了这样的字段:

queryMode: 'local',
forceSelection: true,

Typeahead 工作正常,在 typeahead 期间没有数据加载。

于 2012-09-21T10:19:44.927 回答