//若action返回的是男性的一个Json姓名集合。当你想要的只是那些姓王或者姓张的,那你就可以用 filterBy方法进行如下过滤。
var firstName;
var store = new Ext.data.JsonStore({
url : '../users/view.action?gender='+gender,
root : 'results',
fields : ['showName', 'keyValue'],
listeners : {
load : function(store,records){
store.filterBy(function(record,id){
if(record.get('showName').substring(0,1) == firstName){
record.set('showName', record.get('showName'));
return true;
}
else return false;
});
}
}
}
);