Re: formatting money values with bean:write

2007-02-05 Thread Adam Lipscombe
Further to this I have delved into WriteTag.java, and see the following code in formatValue(): // Try to retrieve format string from resources by the key from formatKey. if( ( formatString==null ) && ( formatKey!=null ) ) { formatString = retrieveFormatString( this.formatKey ); if( formatSt

Re: formatting money values with bean:write

2007-02-05 Thread Adam Lipscombe
Thanks for this. The stack trace is below. The global.moneyFormat property is defined in the app resources file as #,##0.00. The client had a Portuguese locale set, which I believe has a currency format of #.##0,00. As you say, I would expect the system to look for a resources file that is sp

Re: formatting money values with bean:write

2007-01-31 Thread Laurie Harper
Adam Lipscombe wrote: Folks I am using "formatKey="global.moneyFormat"/> global.moneyFormat is defined in the vanilla ApplicationResources.properties file as "#,##0.00" To support users in France and Germany there are also ApplicationResources_fr and ApplicationResources_de property files