How to sort by Date with DataTables jquery plugin?

后端 未结 13 2670
隐瞒了意图╮
隐瞒了意图╮ 2020-12-02 11:02

I am using the datatables jquery plugin and want to sorty by dates.

I know they got a plugin but I can\'t find where to actually download it from

http://data

13条回答
  •  余生分开走
    2020-12-02 11:33

    Follow the link https://datatables.net/blog/2014-12-18

    A very easy way to integrate ordering by date.

    
    
    

    Put this code in before initializing the datatable:

    $(document).ready(function () {
        // ......
        $.fn.dataTable.moment('DD-MMM-YY HH:mm:ss');
        $.fn.dataTable.moment('DD.MM.YYYY HH:mm:ss');
        // And any format you need
    }
    

提交回复
热议问题