We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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".
The text was updated successfully, but these errors were encountered:
Yep, that's really not supported right now. A pull request will be apreciated!
Sorry, something went wrong.
No branches or pull requests
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".
The text was updated successfully, but these errors were encountered: