I use the latest Datatables plugin 1.10 version.
I have 3 columns (0 , 1, 2). Columns 1 and 2 contain numbers which should be formatted like:
1000 -> 1.000
10000 -> 10.000
I searched the documentation and I found these relevant functions:
https://datatables.net/reference/option/formatNumber
https://datatables.net/reference/option/language.thousands
Are the columns that need to be formatted detected automatically?
What is the correct usage of the above functions?
mRenderon yourtargets[2]and format the number respectively with regex and bind it to table depending on your requirement . ex: "render": function(data) {//return formatted value;} },