Skip to content
Advertisement

jQuery DataTable: thousands separator option doesn’t work

Here I set as described the data table thousand separator, but it doesn’t work the way I expected.

Can anybody help me?

JavaScript
JavaScript
JavaScript

Thanks

Advertisement

Answer

You can use a column render function to convert your source data from numbers without thousands separators to the format you want.

JavaScript
JavaScript

This has the following features:

  1. It will work for every record in the table, not just for those which are displayed on the first page.

  2. It does not require a regular expression such as data.replace(/B(?=(d{3})+(?!d))/g, ","); – and is therefore easier to understand.

  3. It uses JavaScript’s built-in support for number formatting using toLocaleString. This means it is also possible to change the thousands separator by applying a different locale (the language tag). For example, if you replace 'en-US' with fr-FR, then you will get the type of thousands separator used in France, which is a space – so $320 800 instead of $320,800.


The above code assumes the source data is provided as number without a currency symbol:

JavaScript

If the source data already has a currency symbol at the start of the string, for example, like this:

JavaScript

then you would need to adjust the render function as follows:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement