I have a datatable on my website and try to sort numbers with 1,999,999,999 but it doesn't work. I tried to fix the problem with a lot of tips on Google but it does not helped me.
Thats the javascript code for my table
$('.d3uitems').dataTable({
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"sDom": '<""l>t<"F"p>',
'aaSorting': [[ 0, 'desc' ]]
}).columnFilter({
aoColumns: [ null,
{ type: "text"},
null,
null,
{ type: "text"},
null
]
});
Here is the Datatable where i try to sort the numbers.