I got an input text of numeric format that representing a currency field.
Depending on the language selected, the mask will use this prefix in english : 'prefix': '$' and this suffix in french : 'suffix': ' $'.
Both input maxlength are set to 11.
In french I can input 100 000 000 but in english i'm stopped to $10,000,000.
Look like the prefix was counted in the maxlength.
I got an input text of numeric format that representing a currency field.
Depending on the language selected, the mask will use this prefix in english : 'prefix': '$' and this suffix in french : 'suffix': ' $'. Both input maxlength are set to 11.
In french I can input 100 000 000 but in english i'm stopped to $10,000,000. Look like the prefix was counted in the maxlength.
Here the code for the english version :
French version :
Any idea or suggestion?