表格分类过滤器 - 更改重置过滤器值

时间:2016-12-04 20:45:57

标签: jquery tablesorter

有没有办法将重置过滤器值从空白更改为其他值?即“全部”

从使用数据值的mottie看到这个JSfiddle,但它做的是将它设置为默认的过滤值。 http://jsfiddle.net/Mottie/856bzzeL/1005/

<thead>
    <tr>
      <th class="filter-select">Name</th>
      <th>Major</th>
      <th data-value="f">Sex</th>
      <th>English</th>
      <th>Japanese</th>11
      <th>Calculus</th>
      <th>Geometry</th>
    </tr>
</thead>

我需要的是一个重置过滤器值,它将在选择时显示所有值,就像在具有filter-select属性的列上选择空白值时一样。

无论如何我能做到这一点吗?

由于

1 个答案:

答案 0 :(得分:1)

不是触发filterReset方法,而是设置所需的默认过滤器(demo):

$(function() {
  var $table = $('#mytable');
  $('#reset-link').click(function(e) {
    $table.trigger('sortReset', function() {
      $.tablesorter.setFilters($table, ['', '', 'f']);
    });
    return false;
  });
  $table.tablesorter({
    theme: 'blue',
    sortList: [[0, 0], [1, 0], [2, 0]],
    widgets: ['filter', 'zebra']
  });
});