I use the latest DataTables.js with jquery 3.3.1.
This is the table data structure
<table id="table_id" class="display">
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Row 1 Data 1</td>
<td>Row 1 Data 2</td>
</tr>
<tr>
<td>Row 100 Data 1</td>
<td>Row 2 Data 2</td>
</tr>
<tr>
<td>Row 11 Data 1</td>
<td>Row 2 Data 2</td>
</tr>
</tbody>
</table>
Should sort row 1
to row 1, row 11, row 100
or row 100, row 11, row 1
but it do
row 1, row 100, row 11
or
row 11, row 100, row 1
This is the normal sort behavior in javascript, what also not sorting correct.
Any ideas?