I'm trying to apply this mask 0.000.000,00 for Brazilian currency
I'd like to have the following behavior:
1 cents -> 0,01 (when user types 1, it gets 0,01)
10 cents -> 0,10
100 cents -> 1,00
100000 cents -> 1.000,00
I'm not sure if I need to use format, replace, mask true or false, or append to achieve this behavior
any thoughts on this?