Ordenation
Ordenation
Hi everyone,
I'm using the following class ""
The ordenation works fine if I have the numbers like
10234
12345
12355
But I have problem If I put the "." as thousands separator. Like
10.234
12.345
12.355
Any ideas that wich modification I have to do for make this work
Thanks
Best regards
I'm using the following class ""
The ordenation works fine if I have the numbers like
10234
12345
12355
But I have problem If I put the "." as thousands separator. Like
10.234
12.345
12.355
Any ideas that wich modification I have to do for make this work
Thanks
Best regards
This discussion has been closed.
Replies
The problem is that I put the thousands separations with the "." but is not working
[code]
if ($.fn.dataTable) { $('.data-table').dataTable ({ "bJQueryUI": true,"oLanguage": {"sInfoThousands": "."},
"sPaginationType": "full_numbers","bPaginate": false,"bInfo":false,
});
};
[/code]
Thanks
Best regard