当我想使用DataTable在表中执行搜索时,它非常完美,除了从想要重置语言和CSV / Excel导出设置(即注释部分)的那一刻起。
您能帮我吗?
谢谢
$('#liste-intervention tfoot th').each(function() {
let title = $(this).text();
$(this).html('<input type="text" class="form-control" placeholder="'+ title +'" />');
});
let table = $('#liste-intervention').DataTable({
// 'language': {
// 'url': '//cdn.datatables.net/plug-ins/1.10.20/i18n/French.json'
// },
// dom: 'Bfrtip',
// buttons: [
// 'csv', 'excel'
// ]
});
table.columns().every(function() {
let that = this;
$('input', this.footer()).on('keyup change clear', function() {
if(that.search() !== this.value) {
that
.search(this.value)
.draw();
}
});
});