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

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -