无论如何使用DataTables来执行多列排序,其中辅助列始终对DSC进行排序,而不管主列的排序方向是什么。
{
targets: [ 0 ],
orderData: [ 0, 12 ] //Column 12 needs to always be sorted DSC
}
答案 0 :(得分:2)
您可以使用orderFixed
进行排序
$(document).ready( function () {
var table = $('#example').DataTable({
columnDefs: [{
targets: [ 0 ],
orderData: [ 0, 12 ]
}],
orderFixed: [[ 12, "desc" ]]
});
} );
希望这有帮助。