Number format of ConstantSum | XM Community
Skip to main content

Hi,
Does anyone know how to make the total amount displayed when using ConstantSum not have a thousand separator?
I need: 1000 (one thousand)
Instead of: 1,000/1.000/1000.00/1000,00 (one thousand)
Thanks a lot!

We can use the below code for this:
 jQuery(".SumTotal .InputText").on("input", function() { this.value = this.value.replace(//^0-9]/g,""); });


Thanks Ron!


Leave a Reply