Hello
I have a problem with formatting my numbers in Swiss German (thousands are grouped with " ' " instead of " , ")
For example I want to format my numbers like this "###'##0.00" (123'456.45). This should be the correct format for de_CH locale. But i doesn't work with JSF 1.2.
My faces-config looks like this:
<locale-config>
<default-locale>de_CH</default-locale>
<supported-locale>de_CH</supported-locale>
<supported-locale>de</supported-locale>
</locale-config>
and my output tag:
<h:outputText id="dktotal" value="#{Bean.total}" >
<f:convertNumber type="number" locale="de_CH" pattern="###,##0.00" />
</h:outputText>
Has anyone a solution to this problem? Isn't there any support for numbers in Switzerland?
Thanks in advance for any suggestions.