2 Replies Latest reply on Oct 31, 2007 12:55 PM by mars1412

    message format in .properties file

      in the .properties file, I have a text that includes standard java message formatting - e.g.

      mtr.test.param.format=string {1} currency {0,number,#.##} integer {0,number,integer}.

      in the web-page i use the following code to generate the output:
       <h:outputFormat value="#{messages['mtr.test.param.format']}">
       <f:param value="3.145" />
       <f:param value="a disturbance in the Force" />
       </h:outputFormat>
      

      but the rendered string is:
      string a disturbance in the Force currency 3.145 integer 3.145.
      


      why does the #.## not work with h:outputFormat?

      is this my mistake, or does h:outputFormat not support all java message format identifiers?
      http://java.sun.com/javase/6/docs/api/java/text/MessageFormat.html

      thanks in advance