You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to make my currency field work. But when I type the values, if it's a value like 10.000,00 ir generates only 1,00000000.
And if it's a value with several numbers, like 19.952,25 it shows only 199,52. And if I keep typing, it resets the value. Also, it does not accept the character "0".
I am getting irregular results and I am not sure if it is me or the plugin
I have a value: 2520000
I apply a mask:$('.amount_total').mask('$ ##,###,###');$('.amount_total').mask('$ ##,###,###.##');
and:
Result: $25,200,00
I also tried:$('.amount_total').mask('$ #,###');$('.amount_total').mask('$ #,###.##');
and:
Result: $2,5200,00
and: $2,520.000
I also tried: $('.amount_total').mask('$000,000,000');
and: $('.amount_total').mask('$000,000,000.00');
Result: $252,000,0
What am I doing wrong?
The text was updated successfully, but these errors were encountered: