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: Use of Validator in a Wizard Validator

2003-07-16 Thread Sandeep Takhar
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

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 Ludovic Maitre
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 in a Wizard Validator The Struts in Action

RE: Use of Validator in a Wizard Validator

2003-07-15 Thread Kearney, Michael
the braces. -Original Message- From: Ludovic Maitre [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 8:34 AM To: Struts Users Mailing List Subject: Re: Use of Validator in a Wizard Validator Hello, I use do my validations in the brackets. For example i test that a field

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