Re: textbox showing currency default value

2009-02-04 Thread QZ
You can add this to your action, locale needs to come from user, public String getCurrency(float amount) { Format currencyformat = NumberFormat.getCurrencyInstance(locale); Return currencyformat.format(amount); } Paolo Niccolò Giubelli-2 wrote: > > There's no method in the Action cla

Attribute OGNL evaluation issue on struts tag in tag file

2009-01-29 Thread QZ
We were using JSP EL expression to evaluate parameter value passed from a custom tag to struts tag defined in that custom tag file. After we upgraded Struts from 2.0.9 to 2.0.14, we had to modifed struts tag defined in our tag file since JSP EL expression is allowed any more in struts tag because