0
を注文するには、私は、このデータテーブル定義のDataTable - 大文字と小文字を区別しない
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
var table = $('#producersTableId').DataTable({
"dom": '<"top">rt<"bottom"lp><"clear">',
"autoWidth": false,
"order": [[1, 'asc']],
"columnDefs": [
{"targets": [0], "width": '25%'},
{"targets": [1], "width": '40%'},
{className: "dt-body-center" , "targets": [2], "width": '5%'},
{className: "dt-body-center" , "targets": [3], "width": '30%'},
]
});
table.columns().every(function() {
var that = this;
$('input', this.header()).on('keyup change', function() {
if (that.search() !== this.value) {
that
.search(this.value)
.draw();
}
});
});
});
は順序(大文字と小文字を区別しない順序)でケースを無視する"order": [[1, 'asc']],
オプションでの方法はありますか?
DataTablesはすでに大文字小文字を区別しない注文を使用しています(https://jsfiddle.net/seo3d9jc/を参照)。 –