Hi Team,
how to set a language specific representation of thousand and decimal signs?
Original DataTables:
$(document).ready(function() {
$('#example').DataTable( {
"language": {
"decimal": ",",
"thousands": "."
}
} );
} );
https://datatables.net/manual/i18n#Ordering-of-numeric-data
I tried following:
DataTables::create(array(
"dataStore"=>$this->dataStore("xyz"),
"options"=>array(
"searching"=>true,
"paging"=>true,
"iDisplayLength"=>25,
"language"=>array(
"decimal"=>",",
"thousands"=>"."
)
),
"columns"=>array(
Thanks!