Decimal separator for prices in German format

I need the prices in EditAction to be displayed in German format i.e. instead of 290.00 to be displayed 290,00. In order do to that I'm using decimalSeparator(',') in combinaiton with mapToDecimalSeparator(['.']). In the Postgre I use the NUMERIC 8,2 field type to store the data. Unfortunately, the end result is 29000,00. Is there a way the number to be displayed as 290,00?
Was this page helpful?