I am using the footable plugin. The demo explains that we have to specify a data-value either in ticks or the unix timestamp. I have tried both ways and the dates won't sort by date, but still by the first number.
Here's what the demo says: http://fooplugins.com/footable-demos/
"
To sort dates, you must specify that the column is data-type="numeric" and also specify a data-value value for each cell, which can be either the date value in ticks or the unix timestamp value, e.g.
<td data-value="500874333932">15 Nov 1985</td>
"
I've tried the following:
<td data-type="numeric" data-value="2014-07-22">July 22, 2014</td>
<td data-type="numeric" data-value="Tue July 22 2014 09:00:00 GMT-0700 (Pacific Standard Time)">July 22, 2014</td>
<td data-type="numeric" data-value="7/22/2014">July 22, 2014</td>
Tue July 22 2014 09:00:00 GMT-0700 (Pacific Standard Time) is my initial date format I'm receiving.
I've also tried converting my date into unix time, but it didn't work either: 10/17/2014 became 1413558000000 but I don't think that equals 10/17/2014...
<td data-type="numeric" data-value="1413558000000">July 22, 2014</td>
Any ideas?