You should specify the type of the column. Otherwise it will be sorted as text. You can do it by specyfing sorter
parameter:
<table>
<thead>
<tr>
<th>Id</th>
... other columns ....
<th class="{sorter: 'isoDate'}">Date</th>
</tr>
</thead>
<tbody>
... table body ....
Alhough I'm not sure if isoDate
is the sorter you should use, but tablesorter have two other sorters: usLongDate
and shortDate
. You can try which one of those will do the job.