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
textFieldbound 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
bigDecimalFieldfor the same type of data (e.g., aBigDecimalentity attribute), the formatting is not applied.
My questions:
- If not, how can I make
bigDecimalFieldrespect thenumberDecimalSeparatorandnumberGroupingSeparatorsettings 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!


