Currency Sorting
Currency Sorting
Currency sorting is not working for us properly. An example of our format is $1.25 or -$2.50. What are we doing wrong?
var oTable = jQuery('#transactions').dataTable({
"iDisplayLength": 10,
"aaSorting": [[ 0, "desc" ]],
"aoColumns": [
{ "sType": 'date' },
null,
{ "sType": 'currency' },
{ "sType": 'numeric' },
null,
null
]
});
var oTable = jQuery('#transactions').dataTable({
"iDisplayLength": 10,
"aaSorting": [[ 0, "desc" ]],
"aoColumns": [
{ "sType": 'date' },
null,
{ "sType": 'currency' },
{ "sType": 'numeric' },
null,
null
]
});
This discussion has been closed.
Replies
Allan