jsf - Display amount in format $1,560.00 and $ 50.00 -
i have 2 fields in screen need display amounts in format this
amount : $1,560.00 tax : $ 10.00
in code using
<h:outputtext value="#{mbean.amount}" > <f:convertnumber currencysymbol="$" type="currency" maxfractiondigits ="2" /> </h:outputtext>
and output is
amount : $1560.00 tax : $10.00
how right align amount , comma (,) these amount fields?
Comments
Post a Comment