A table that can be sorted by columns. Supported data types: strings, numbers, dates.
<table is="sortable-table" unresponsive>
<thead>
<tr>
<td>Name</td>
<td data-type="number">Letters in name</td>
<td data-type="date" data-format='{ "dateStyle": "medium" }'>Birthday</td>
</tr>
</thead>
<tbody>
<tr>
<td>Rémi</td>
<td>4</td>
<td>752025600000</td>
</tr>
<tr>
<td>Guillaume</td>
<td>9</td>
<td>373766400000</td>
</tr>
<tr>
<td>Christophe</td>
<td>10</td>
<td>236131200000</td>
</tr>
<tr>
<td>Marino</td>
<td>6</td>
<td>155084400000</td>
</tr>
</tbody>
</table>
Name | Letters in name | Birthday |
Rémi | 4 | 752025600000 |
Guillaume | 9 | 373766400000 |
Christophe | 10 | 236131200000 |
Marino | 6 | 155084400000 |