我想覆盖网格过滤器以过滤空而不是空复选框
问问题
76 次
1 回答
0
如果商店已经存在,您可以添加过滤器
store.addFilter(function(rec){
return rec.get('dataIndex name') === true; // or other flag. if it's bool value === no need;
});
在新商店中,您可以添加过滤器
Ext.create('Ext.data.Store', {
model: 'User',
proxy: {
type: 'ajax',
url: '/users',
reader: {
type: 'json',
root: 'users'
}
},
filters: [
function(rec) {
return rec.get('dataIndex name') === true;
}
]
});
于 2020-01-16T15:22:35.743 回答