过滤grid中的某条记录
grid.store.on("load", function(){
grid.store.filterBy(function(rec, id){
var text = rec.get('indexName');
// console.log(text.indexOf("其他科目"));
return (text.indexOf("其他科目")==-1);
});
});