How to sort by Date with DataTables jquery plugin?

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

    Datatables only can order by DateTime in "ISO-8601" format, so you have to convert your date in "date-order" to this format (example using Razor):

    @myDate.ToShortDateString() - @myDate.ToShortTimeString()
    

提交回复
热议问题