Using jQuery 2.1.3 and DataTables 1.10.5, my table won\'t sort when I click on the up- and down-arrows above the columns. From what I can tell from the documentation, this is th
You have to define the type of your column data. The problem here is coming from the hyphen it seems, it is working without it
Solution : JsFiddle
$('#table-guid').dataTable( { "columnDefs": [ { "type": "numeric-comma", targets: "_all" } ] });
Here is the documentation