当我使用' |空'在filter_functions
中,不应用过滤。我希望能够过滤,以便显示字段为空的行。
答案 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;
}
}
}
});
});