tablesorter 中有没有一种方法可以过滤以仅选择字段为空的行?

问题描述 投票:0回答:2

当我在

filter_functions
中使用“|Empty”时,不会应用过滤。我希望能够进行过滤,以便显示字段为空的行。

filter tablesorter
2个回答
2
投票

我刚刚更新了 tablesorter fork 存储库,因此在 v2.21.5+ 中,您现在可以添加

filter_function
来定位空单元格,并使用
filter_selectSource
使用自定义和/或所有列单元格文本填充选择作为选项(演示):

$(function(){
    $('table').tablesorter({
        theme: 'blue',
        widgets: ['zebra', 'filter'],
        widgetOptions: {
            filter_functions: {
                0: {
                    '{empty}' : function (e, n, f, i, $r, c) {
                        return $.trim(e) === '';
                    }
                }
            },
            filter_selectSource: {
                0: function (table, column, onlyAvail) {
                    // get an array of all table cell contents for a table column
                    var array = $.tablesorter.filter.getOptions(table, column, onlyAvail);
                    // include the filter_function option
                    array.push('{empty}');
                    return array;
                }
            }
        }
    });

});

0
投票

谢谢,莫蒂。我已经尝试过你上面的方法,效果很好。但是,只有当选择源函数是静态时,这才能正常工作。 当我期望选择源函数动态返回数组时,选择源函数没有被正确调用(当我将过滤器函数设置为 true 时,动态调用工作正常)。

© www.soinside.com 2019 - 2024. All rights reserved.