在数据表中对自定义日期进行排序

时间:2017-05-26 11:39:53

标签: sorting date datatables

我正在使用datatable在表格中显示结果。

enter image description here

当我点击排序时,它会逐日排序并忽略月份和年份。

升序 enter image description here

enter image description here

我目前使用的代码是

 $('.dtbt2').DataTable({
    "ordering" : true,
    "scrollCollapse" : true,
    "columnDefs" : [{"targets":3, "type":"date-eu"}],
    "bInfo": true
});

我该怎么做才能正确排序?

提前谢谢你们, Auj

1 个答案:

答案 0 :(得分:0)

类型:date-eu是一个开箱即用的数据表数据类型吗?我从来没用过它。但如果不是,请尝试使用this example 等扩展功能,或尝试将类型更改为日期。这应该适当排序。如果您需要其他类型日期完成的其他内容,您只需要使用extend选项来定义自己的自定义排序。