カテゴリと日付を持つDatatableがあります。私が日付順に並べ替えると、それはまっすぐにソートされているように見えます(写真参照)。ここ は私の初期化です:DataTable並べ替えの問題
jQuery('#tstable').dataTable({
"columnDefs": [
{"width": "20%", "orderData": [ 1, 0 ], "targets": 0},
{"width": "11%", "targets": 1},
{"width": "12%", "orderData": [ 1, 2], "targets": 2},
{"width": "10%", "orderData": [ 1, 3], "targets": 3},
{"width": "12%", "orderData": [ 1, 4], "targets": 4},
{"width": "40%", "orderData": [ 1, 5], "targets": 5},
{"sType": "date", "targets": 3},
{"width": "0", "targets": 6, "visible": false}
],
"aaSorting": [[6, "desc"]],
"bPaginate": true,
"bFilter": true,
"aoColumns": [
null,
null,
null,
null,
null,
null,
null
]
});
次で結果のソート:日付が昇順にソートしない理由
誰もが指摘することはできますか?
見てくださいhttps://datatables.net/blog/2014-12-18 –