Hi everyone,
I’ve run into an issue with number formatting in Jmix and would like to know if anyone has faced (and solved) something similar.
In my message.properties
, I’ve set the following:
numberDecimalSeparator=,
numberGroupingSeparator=\
Observed behavior:
- When I use a
textField
bound to a numeric property, the formatting works as expected — decimal and grouping separators are applied correctly based on the configuration above. - However, when I use a
bigDecimalField
for the same type of data (e.g., aBigDecimal
entity attribute), the formatting is not applied.
My questions:
- If not, how can I make
bigDecimalField
respect thenumberDecimalSeparator
andnumberGroupingSeparator
settings frommessage.properties
? - Is there a configuration or formatter binding I need to apply manually for
bigDecimalField
?
Any advice or code examples would be greatly appreciated.
Thanks in advance!