1

次のコードは、私の extjs ストアです。このストアから特定の値を除外したいと思います。

たとえば、「オプション 1」、「オプション 2」などの値はストアから除外されるか、このストアを取得して入力ドロップダウン フィールドに表示します。

どうすればいいですか?

ありがとうございました。

 var input1store = new Ext.data.Store({
fields: [{name: 'name'}],
proxy:{
    type: 'ajax',
    url:    'www.requesturl.com?format=json&source1',
            reader: {
        type: 'json',
        root:   'xml.result'
    }
},
autoLoad:false,
sorters:    [{property: 'name', direction: 'asc'}]
});
4

1 に答える 1

1

フィルターhttp://docs.sencha.com/extjs/4.2.1/#!/api/Ext.data.Store-method-filterを使用できます

var input1store = new Ext.data.Store({
    fields: [{name: 'name'}],
    proxy:{
        type: 'ajax',
        url:    'www.requesturl.com?format=json&source1',
        reader: {
            type: 'json',
            root:   'xml.result'
        }
    },
    autoLoad:false,
    sorters:    [{property: 'name', direction: 'asc'}],

    listeners: { 
       load: function() {
           this.filter(function(rec){
               var val = rec.get('name');
               return val != 'option1' && val != 'option2';
           });
       }
    }
});
于 2013-06-03T17:14:55.590 に答える