How to sort by Date with DataTables jquery plugin?

后端 未结 13 2650
隐瞒了意图╮
隐瞒了意图╮ 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:49

    As of 2015, the most convenient way according to me to sort Date column in a DataTable, is using the required sort plugin. Since the date format in my case was dd/mm/yyyy hh:mm:ss, I ended up using the date-euro plugin. All one needs to do is:

    Step 1: Include the sorting plugin JavaScript file or code and;

    Step 2: Add columnDefs as shown below to target appropriate column(s).

    $('#example').dataTable( {
        columnDefs: [
           { type: 'date-euro', targets: 0 }
        ]
    });
    

提交回复
热议问题