my problem is,
I have listed values like below, In Rails I used helper for delimiter ( number_with_delimiter(total.to_i, :delimiter => ','))
- 1,303,050
- 1,812,462
- 0
- 2,429
- 2,063,787
- 36,837,192
- 36,878
Using JQuery TableSorter ($(".reportsortable").tablesorter({widgets: ["zebra"]});) the above list should be sorted like below,
- 0
- 2,429
- 36,878
- 1,303,050
- 1,812,462
- 2,063,787
- 36,837,192 But I don't know what is the reason, its just not working correctly. Any suggestion? Thanks in advance