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!
Page 1 / 1
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.