Bootstrap-table自定义滤波器
我正在尝试使用Bootstrap-table显示我的数据,我想过滤指定的单元格,我不希望它们出现。
$('#tableId').bootstrapTable('refreshOptions', {
filterOptions: {
filterAlgorithm: "not"
}
});
$('#@tableId').bootstrapTable('filterBy', {"specifiedCell":""});
可悲的是,FilterAlgorithm不支持不支持上面代码的
。
我应该在FilterAlgorithm面前写什么以使用自定义过滤器?
I'm trying to use Bootstrap-Table to show my data and I want to filter rows that a specified cell is empty and I don't want them to show up.
$('#tableId').bootstrapTable('refreshOptions', {
filterOptions: {
filterAlgorithm: "not"
}
});
$('#@tableId').bootstrapTable('filterBy', {"specifiedCell":""});
Sadly filterAlgorithm does not support not
at code above.
What should I write in front of filterAlgorithm to use a custom filter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在互联网上没有看到任何关于它的好的解释,但通过测试,我了解到自定义过滤器模板是这样的:
在上面的代码中,我使用过滤器检查了行中的指定单元格,其中包含不应该出现在表格上的值,所以通过在不在过滤器中返回 true 来创建自定义
not
过滤器。I didn't see any good explanation about it in internet but by testing I understand that custom filter template is like this:
In the code above I checked specified cell in the row with filter that contains values that shouldn't be on the table so by returning true on not being in filter I made custom
not
filter.