我正在尝试在 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>
谢谢大家!
答案 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,
},
]
});
});