bootstrap-table /如何在表配置中添加filter-control

时间:2017-10-20 14:36:41

标签: javascript html bootstrap-table

我正在尝试在 Bootstrap-table 中为每列创建一个过滤器。

我见过很多网站都使用HTML 数据过滤器控件标记来执行此操作,但我想在javascript端执行此操作;最好是在表配置属性上。

这是一个HTML 数据过滤器控件标记示例:

  <thead>
        <tr>
            <th data-field="state" data-checkbox="true"></th>
            <th data-field="prenom" data-filter-control="input" data-sortable="true">Prénom</th>
            <th data-field="date" data-filter-control="select" data-sortable="true">Date</th>
            <th data-field="examen" data-filter-control="select" data-sortable="true">Examen</th>
            <th data-field="note" data-sortable="true">Note</th>
        </tr>
    </thead>

谢谢大家!

1 个答案:

答案 0 :(得分:0)

$(function () {
  $('#table').bootstrapTable({
    filterControl: true,
    disableUnusedSelectOptions: true,

    columns: [
      {
        field: "first_column",
        title: "First Column",
        filterControl: 'input',
        filterControlPlaceholder: "holder",
        filterStrictSearch: false
      },{
        field:  "second_column",
        title: "Second Column",
        filterControl: 'select',
        filterStrictSearch: false,
      },
    ]

  });
});