format output properties change decimal/thousands separator
Hi,
I want to define the output format properties (e.g. oxf.xforms.format.output.double) so that the decimal separator is "," and the thousands separator is ".".
How can I achive this?
Re: format output properties change decimal/thousands separator
My "hacky" solution is to use the translate function.
<property as="xs:string" name="oxf.xforms.format.output.double"> if (. castable as xs:double) then translate(format-number(xs:double(.),'#,##0.000'),',.','.,') else .
</property>