RE: prevent of generating validation errors, when using form the first time

2002-08-02 Thread Kamholz, Keith (corp-staff) USX
]] Sent: Friday, August 02, 2002 12:10 AM To: [EMAIL PROTECTED] Subject: Re: prevent of generating validation errors, when using form the first time Subject: Re: prevent of generating validation errors, when using form the first time From: Selvamohan Neethiraj [EMAIL PROTECTED] === I just got

RE: prevent of generating validation errors, when using form the first time

2002-08-02 Thread wbchmura
Newsgroup [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 12:10 AM To: [EMAIL PROTECTED] Subject: Re: prevent of generating validation errors, when using form the first time Subject: Re: prevent of generating validation errors, when using form the first time From: Selvamohan Neethiraj [EMAIL

RE: prevent of generating validation errors, when using form the first time

2002-08-02 Thread wbchmura
PROTECTED]] Sent: Friday, August 02, 2002 12:10 AM To: struts-user Subject: Re: prevent of generating validation errors, when using form the first time Subject: Re: prevent of generating validation errors, when using form the first time From: Selvamohan Neethiraj [EMAIL PROTECTED] === I just got

RE: prevent of generating validation errors, when using form the first time

2002-08-02 Thread wbchmura
validation errors, when using form the first time I've done this two ways: #1 - Have two action definitions that point at the same ActionObject. addNewCustomer.do submitNewCustomer.do hmm I don't like this one, I don't want to have duplicate definitions in my config. #2 - Make the validate

RE: prevent of generating validation errors, when using form the first time

2002-08-02 Thread Kamholz, Keith (corp-staff) USX
] Subject: RE: prevent of generating validation errors, when using form the first time I like this idea... Elegant simplicity... In a few of my cases however I need to populate select boxes from a DB.. -Original Message- From: kkamholz [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02

RE: prevent of generating validation errors, when using form the first time

2002-08-01 Thread wbchmura
I've done this two ways: #1 - Have two action definitions that point at the same ActionObject. addNewCustomer.do submitNewCustomer.do The only difference is that addNewCustomer.do has validate=false and is what you call for all the initial displays of the form. The submit has

Re: prevent of generating validation errors, when using form the first time

2002-08-01 Thread Albrecht Berger
I've done this two ways: #1 - Have two action definitions that point at the same ActionObject. addNewCustomer.do submitNewCustomer.do hmm I don't like this one, I don't want to have duplicate definitions in my config. #2 - Make the validate() method figure out if its an initial display.

Re: prevent of generating validation errors, when using form the first time

2002-08-01 Thread JEWeaver
Hi, I believe that any time you go through the action servlet via an action URI, and the mapping for that action specifies a form bean, a form bean is created if one does not already exist. If validate is set to true in the mapping (the default), then validate will be called. If you have some

Re: prevent of generating validation errors, when using form the first time

2002-08-01 Thread @Basebeans.com
Subject: Re: prevent of generating validation errors, when using form the first time From: Selvamohan Neethiraj [EMAIL PROTECTED] === I just got into this mailing list. But, I see this question pop-up many times and I really did not see this as an issue. The Action is invoked only when