数据表服务器端:具有所有选项的下拉过滤器?

时间:2019-04-11 13:15:58

标签: javascript jquery html datatables server-side

我已经实现了一个在服务器端运行的数据表。但是,我也想利用下拉选择过滤器。我面临的问题是,过滤器仅显示当前页面上显示的值。如您所见,这不是很有用,因为我希望可以按所有数据(不仅是显示的数据)过滤表。

我正在使用Laravel和此软件包https://github.com/yajra/laravel-datatables

你们有如何改变解决方案的想法吗?

这是我的表在服务器端运行的示例。可以看到,只有显示的值作为过滤选项:

$(document).ready(function() {
  $('#example').DataTable({
    serverSide: true,
    ordering: false,
    searching: false,
    ajax: function(data, callback, settings) {
      var out = [];

      for (var i = data.start, ien = data.start + data.length; i < ien; i++) {
        out.push([i + '-1' , i + '-2', i + '-3', i + '-4', i + '-5']);
      }

      setTimeout(function() {
        callback({
          draw: data.draw,
          data: out,
          recordsTotal: 5000,
          recordsFiltered: 5000
        });
      }, 50);
    },
    initComplete: function () {
      this.api().columns().every( function () {
        var column = this;
        var select = $('<select><option value=""></option></select>');
        select.appendTo( $(column.header()).empty() )

        select.on( 'click', function(e) {
          e.stopPropagation();
        } );


        select.on( 'change', function () {
          var val = $.fn.dataTable.util.escapeRegex(
            $(this).val()
          );

          column
            .search( val ? '^'+val+'$' : '', true, false )
            .draw();
        } );

        column.data().unique().sort().each( function ( d, j ) {
          select.append( '<option value="'+d+'">'+d+'</option>' )
        } );
      } );
    },
  });
});
<script src="https://code.jquery.com/jquery-1.12.3.js"></script>
<script src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
<link href="https://cdn.datatables.net/1.10.12/css/jquery.dataTables.min.css" rel="stylesheet"/>

<table width="100%" class="table table-striped table-bordered dt-responsive nowrap" id="example" cellspacing="0">
  <thead>
    <tr>
      <th>ID</th>
      <th>First name</th>
      <th>Last name</th>
      <th>ZIP / Post code</th>
      <th>Country</th>
    </tr>
  </thead>
</table>

致以问候,谢谢!

0 个答案:

没有答案