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
This is an important issue .. perhaps the most important. I am running into this as well. The problem occurs when there is no decimal point included in the source number. This occurs regardless of whether or not a decimal character has been set up in initialization.
THIS:
"<script type="text/javascript">$("#x_B_Offer_Price").maskMoney({thousands:',', decimal:'.', precision: 0, allowZero: true, allowNegative:false, prefix: ' $'});</script>";
example: $900,000 input
when unmasked:
var num = $('#x_B_Offer_Price').maskMoney('unmasked')[0]; alert('type: '+ typeof(num) + ', value: ' + num)
results in: 900 NOT 900000
The text was updated successfully, but these errors were encountered: