views:

42

answers:

1

My table has a column of numbers which are sorted incorrectly.

Example numbers:
5.8
2.4
10.7
0.1
1.9

and basically my problem is 10.7 should be at the very end/very start depending on which way it was sorted. but it is showing up in the middle.

+1  A: 

Try manually specifying the column parser. You can do this easily via metadata -- indicating the parser type in the class of the table header for the column in question. For example:

<th class="{sorter: 'floating'}">

Further reading:

Ken Redler