Reputation: 397
I'm using jQuery Tablesorter and I have a problem sorting tables with date values of format: 16-Jan-2010
How do I make them sort properly?
Thanks in advance!
Upvotes: 1
Views: 76
Reputation: 39763
You should write your own parser. for jQuery Tablesorter. Try converting the date to a format that does sort (example, YYMMDD will sort correctly as strings :))
Upvotes: 2