以下代码是我的 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'}]
});