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

从使用数据值的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属性的列上选择空白值时一样。

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

谢谢

最佳答案

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

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

关于jquery - 表格排序筛选器-更改重置筛选器值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40963443/

10-09 22:51