次のコードは、私の 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'}]
});