Open jakjr opened 2 years ago
Hello, I am trying to active this result: "R$ 999,00"
The cents should be fixed, so this is my config:
` config: { prefix: 'R$ ', suffix: ",00", thousands: '.', decimal: '', precision: 0, disableNegative: true, disabled: false, min: null, max: null, allowBlank: true, minimumNumberOfCharacters: 0, }
` The result is: "R$ 999,", omitting the both zeros in the suffix.
Using letters in suffix works like expected: "R$ 999,AA".
Yep, that's really not supported right now. A pull request will be apreciated!
Hello, I am trying to active this result: "R$ 999,00"
The cents should be fixed, so this is my config:
` config: { prefix: 'R$ ', suffix: ",00", thousands: '.', decimal: '', precision: 0, disableNegative: true, disabled: false, min: null, max: null, allowBlank: true, minimumNumberOfCharacters: 0, }
` The result is: "R$ 999,", omitting the both zeros in the suffix.
Using letters in suffix works like expected: "R$ 999,AA".