RE: i18n input

2004-12-06 Thread Huw Richards
ford [mailto:[EMAIL PROTECTED] Sent: Monday, December 06, 2004 7:03 AM To: 'Struts Users Mailing List' Subject: RE: i18n input ___ *** WARNING *** This email has been received from the internet. Check any attachments fo

RE: i18n input

2004-12-06 Thread Simon Matic Langford
the entered value rather than throw an exception... simon > -Original Message- > From: Huw Richards [mailto:[EMAIL PROTECTED] > Sent: 06 December 2004 16:05 > To: Struts Users Mailing List > Subject: RE: i18n input > > > So does your translation code handle user

RE: i18n input

2004-12-06 Thread Simon Matic Langford
nstruction contained. > -Original Message- > From: Huw Richards [mailto:[EMAIL PROTECTED] > Sent: 06 December 2004 11:55 > To: Struts Users Mailing List > Subject: RE: i18n input > > > Hi > > It was something along those lines. > > My business

RE: i18n input

2004-12-06 Thread Huw Richards
List' Subject: RE: i18n input ___ *** WARNING *** This email has been received from the internet. Check any attachments for viruses before opening them. ___ huw, how did

RE: i18n input

2004-12-06 Thread Simon Matic Langford
Sent: 03 December 2004 23:05 > To: Struts Users Mailing List > Subject: RE: i18n input > > > The one problem I had with i18n input was with European > locales where "," is > used as the decimal separator. The number would be formatted > with "," as the >

Re: i18n input

2004-12-06 Thread Guillaume Cottenceau
Huw Richards writes: > The one problem I had with i18n input was with European locales where "," is > used as the decimal separator. The number would be formatted with "," as the > decimal separator but as the input boxes are just text, the numeric keypad >

RE: i18n input

2004-12-03 Thread Jim Barrows
> -Original Message- > From: Huw Richards [mailto:[EMAIL PROTECTED] > Sent: Friday, December 03, 2004 4:05 PM > To: Struts Users Mailing List > Subject: RE: i18n input > > > The one problem I had with i18n input was with European > locales where ",&quo

RE: i18n input

2004-12-03 Thread Huw Richards
The one problem I had with i18n input was with European locales where "," is used as the decimal separator. The number would be formatted with "," as the decimal separator but as the input boxes are just text, the numeric keypad which produces "," in excel when "

RE: i18n input

2004-12-03 Thread Jim Barrows
> -Original Message- > From: Simon Matic Langford [mailto:[EMAIL PROTECTED] > Sent: Friday, December 03, 2004 8:51 AM > To: 'Struts Users Mailing List' > Subject: RE: i18n input > > > yeah, I know I can do this, but this is a large system with around

RE: i18n input

2004-12-03 Thread Simon Matic Langford
yeah, I know I can do this, but this is a large system with around 200 jsps 80 views and a number of controllers. doing the display is reasonably simple I know, but extremely tedious and prone to errors, I was hoping for a more elegant solution which also handles input... > > Java comes with i18n

RE: i18n input

2004-12-03 Thread Jim Barrows
> -Original Message- > From: Simon Matic Langford [mailto:[EMAIL PROTECTED] > Sent: Friday, December 03, 2004 2:50 AM > To: [EMAIL PROTECTED] > Subject: i18n input > > > Is there a general pattern for localised input, ie being able to enter > numbers and date

RE: i18n input

2004-12-03 Thread Simon Matic Langford
ing List > Subject: Re: i18n input > > > FormDef can help you with this. https://formdef.dev.java.net. > There's a locale.war sample app download which can work with different > locales. It doesn't have support for BigDecimals, though (not yet, > anyway). > For d

Re: i18n input

2004-12-03 Thread Hubert Rabago
FormDef can help you with this. https://formdef.dev.java.net. There's a locale.war sample app download which can work with different locales. It doesn't have support for BigDecimals, though (not yet, anyway). For displaying them on the screen, experiment bean:write with format/formatKey/locale a

i18n input

2004-12-03 Thread Simon Matic Langford
Is there a general pattern for localised input, ie being able to enter numbers and dates formatted for Germany but getting them formatted for Java on the server side for constructing BigDecimals etc, aside from using utilities in the java.text package? What about for displaying back the other way?