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

时间:2015-04-07 02:54:36

标签: filter tablesorter

当我使用' |空'在filter_functions中,不应用过滤。我希望能够过滤,以便显示字段为空的行。

1 个答案:

答案 0 :(得分:2)

我刚刚更新了tablesorter fork存储库,因此使用v2.21.5 +,您现在可以添加filter_function来定位空单元格,并使用filter_selectSource使用自定义填充选择和/或所有列单元格文本作为选项(demo):

$(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;
                }
            }
        }
    });

});