RE: Searching the mailing list

2003-07-17 Thread Kearney, Michael
I noticed that a couple of days ago. Being a newbie I didn't realize that wasn't the normal mode. -Michael -Original Message- From: Gregory F. March [mailto:[EMAIL PROTECTED] Sent: Thursday, July 17, 2003 7:42 AM To: Struts Users Mailing List Subject: Searching the mailing list

RE: Use of Validator in a Wizard Validator

2003-07-16 Thread Kearney, Michael
it wrong. That information is already contained in the validation.xml file. -Michael -Original Message- From: Kearney, Michael [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 7:46 AM To: 'Struts Users Mailing List' Subject: RE: Use of Validator in a Wizard Validator Hmmm

RE: Wizard Style Forms Example

2003-07-16 Thread Kearney, Michael
I just started using the package available at http://www.livinglogic.de/Struts/index.html and didn't have too much trouble getting my wizard going. -Michael -Original Message- From: Norr, Peter [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 10:09 AM To: 'Struts Users

RE: Use of Validator in a Wizard Validator

2003-07-15 Thread Kearney, Michael
Hmmm, no response. Let me rephrase the question. How do you perform field validation in your wizards? Thanks, Michael -Original Message- From: Kearney, Michael [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 12:28 PM To: '[EMAIL PROTECTED]' Subject: FW: Use of Validator

RE: Use of Validator in a Wizard Validator

2003-07-15 Thread Kearney, Michael
extend ValidatorForm, check the Javadoc for this class). So good luck, re-read the doc and the examples if you don't understand my mail, best regards, Ludo Kearney, Michael wrote: Hmmm, no response. Let me rephrase the question. How do you perform field validation in your wizards? Thanks

RE: [OT] auto convert resource property files to different language

2003-07-15 Thread Kearney, Michael
You've just asked for the Holy Grail of language translation. I don't think that tool exists yet. There are companies that provide that service. -Michael -Original Message- From: Ashish Kulkarni [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 10:21 AM To: [EMAIL

FW: Use of Validator in a Wizard Validator

2003-07-14 Thread Kearney, Michael
The Struts in Action book describes how to do multipage validations in chapter 12.10.1 by using the following code: if (page == 1) { //Check page 1 properties } if (page == 2) ( // And so on. Unfortunately, it doesn't go into detail about what goes inside the braces. What