sort the date column in French

sort the date column in French

sweetmelonsweetmelon Posts: 2Questions: 2Answers: 0

I use this link as an example. http://datatables.net/blog/2014-12-18
I tried to search the date in French but it doesn't sort it correctly.
Here is the example. Please let me know what I did wrong.
http://jsfiddle.net/9gohzd9t/71/

Answers

  • allanallan Posts: 63,761Questions: 1Answers: 10,510 Site admin

    In the console if I run:

    moment( '1 janv. 2015', 'D MMM YYYY', 'fr', true ).isValid()

    That returns false which is why the sorting plug-in is failing for your date. Looking at the Moment locale settings you have janv. for January, so there appears to be an issue with moment accepting a . in the short name.

    That is one to ask the MomentJS folks about.

    Allan

This discussion has been closed.