I have a table which contains columns of numbers and NA.
<tr>
<td>NA</td>
</tr>
<tr>
<td>1024</td>
</tr>
<tr>
<td>100</td>
</tr>
<tr>
<td>200</td>
</tr>
<tr>
<td>300</td>
</tr>
<tr>
<td>2096</td>
</tr>
I'm trying to use jQuery dataTable to sort the column to produce the following:
NA, 100, 200, 300, 1024, 2096 and 2096, 1024, 300, 200, 100, NA
but can't figure out how to do it from reading the sorting and plugins docs.
I've created a Fiddle of the code here: http://jsfiddle.net/stowball/rYtxh/ and would really appreciate some assistance.