Bootstrap-table自定义滤波器

发布于 2025-01-19 03:08:38 字数 353 浏览 0 评论 0原文

我正在尝试使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

阿楠 2025-01-26 03:08:38

我在互联网上没有看到任何关于它的好的解释,但通过测试,我了解到自定义过滤器模板是这样的:

$('#tableId').bootstrapTable('refreshOptions', {
    filterOptions: {
        filterAlgorithm: function (row, filter) {
            if(row['specifiedCell'] != filter['specifiedCell']){ //check row or row[cell] condition by `filter`
                return true;//it will the `row` will display.
            } else {
                return false;//it wont show the `row`
            }
        }
    }
});

$('#@ViewBag.dynamicData["tableId"]').bootstrapTable('filterBy', {
    "specifiedCell":""
});

在上面的代码中,我使用过滤器检查了行中的指定单元格,其中包含不应该出现在表格上的值,所以通过在不在过滤器中返回 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:

$('#tableId').bootstrapTable('refreshOptions', {
    filterOptions: {
        filterAlgorithm: function (row, filter) {
            if(row['specifiedCell'] != filter['specifiedCell']){ //check row or row[cell] condition by `filter`
                return true;//it will the `row` will display.
            } else {
                return false;//it wont show the `row`
            }
        }
    }
});

$('#@ViewBag.dynamicData["tableId"]').bootstrapTable('filterBy', {
    "specifiedCell":""
});

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文