We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I define data-type="number" the comma is removed from the thousands separator in the output.
Trying to figure out how to have the comma included.
The text was updated successfully, but these errors were encountered:
There is is bug at
FooTable/src/js/classes/columns/FooTable.NumberColumn.js
Line 55 in fba11d1
#895 fixes it.
A workaround is to define a custom formatter for the column:
"formatter": function(value, options, rowData) { if (value == null) return ''; var s = (value + '').split('.'); s[0] = s[0].replace(/\B(?=(?:\d{3})+(?!\d))/g, this.thousandSeparator); return s.join(this.decimalSeparator); }
Sorry, something went wrong.
@otovalek - we need some assistance to implement this workaround. How can I discuss with you privately?
Successfully merging a pull request may close this issue.
When I define data-type="number" the comma is removed from the thousands separator in the output.
Trying to figure out how to have the comma included.
The text was updated successfully, but these errors were encountered: