使用列级标题过滤 Slickgrid 时如何执行部分匹配?
当使用固定标题行实现列级过滤器时,如何返回部分匹配的单元格?
IE: 搜索词:“omato”
返回:自动机、番茄等。
When using a fixed header row to implement column-level filters, how can I return cells with a partial match?
ie:
search term: "omato"
returns: automator, tomato etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在示例中的 MyFilter 下,将这个循环...替换
为这个..
现在看起来很明显:)
Under MyFilter in the example replace this loop...
with this..
Seems so obvious now :)
这是我用来实现此目的的咖啡脚本代码:
grid.setSelectedRows([])
行仅在应用过滤器之前清除所有选定的行。如果您不这样做,那么您在屏幕上看到的所选行与底层所选行不匹配。更重要的是,
return true except hasFilter
行会在网格加载时阻止任何过滤工作,除非用户实际在其中一个框中键入内容。我发现,当通过 http 批量加载 JSON 数据的大型数据集时,这对网格的性能有很大影响。这是设置
hasFilter
标志的输入框处理程序:Here is the coffeescript code I use to acheive this:
The line
grid.setSelectedRows([])
just clears any selected rows before applying the filter. If you don't do this then the selected rows you see on-screen do not match the underlying selected rows.More importantly the
return true unless hasFilter
line prevents any filtering work whilst the grid is loading, unless the user has actually typed into one of the boxes. I have found that this makes quite a difference to the performance of the grid when loading large datasets in batches of JSON data over http.Here is the input box handler that sets the
hasFilter
flag: