In our forms we have a number of numeric fields, which we would like to validate. Being in Germany, out client wants German locale, i.e. decimal comma instead of decimal point.
If I define the field as type “numeric” in the Object, the validator insists on a decimal point, otherwise it claims the value is not a number.
We’d like to keep the field as numeric, because some calculations are based on it.
I tried using a custom validator, but, again, if the field is defined as “numeric” the default validator kicks in.
So basically the question is, how can we make the form validator accept a German locale for a number?
Thank you in advance!