Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Extjs 库的新用户,我成功创建了一个网格,它工作得很好,现在我想使用 Ext.grid.GridFilters 向我的网格添加过滤,但是当我添加过滤时它可以工作,但它过滤了所有行,但我想从过滤中排除最后 3 行。
如何仅过滤指定的行?
谢谢您的帮助。
当您到达具有特定 idkey 或特定字段值的行时,您可以使用函数来过滤网格并排除以应用它。
像 ext js 文档
var longNameFilter = new Ext.util.Filter({ filterFn: function(item) { return item.name.length > 4; }});