Re: Validation Question with Indexed Properties

2004-03-22 Thread Craig Tataryn
friendly *bump* On Sun, 21 Mar 2004 18:12:54 -0600 (CST), "Craig Tataryn" wrote: > > Hi, I have the following definition in my validation.xml file: > > > > property="provStateId" > indexedListProperty="address" >

RE: validation question

2004-01-20 Thread Matthias Wessendorf
hi use the DynaValidatorActionForm in validate.xml enter the path of submit instead of "complete"-formbeanName name="/submit1" and so on greetings -Original Message- From: Nandita Rajagopalan [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 20, 2004 5:24 PM To: [EMAIL PROTECTED] Su

RE: validation question

2003-09-15 Thread Yuan, Saul (TOR-ML)
In your action mappings in struts-config, you can set validate=false, and do your validation in the action class. Not sure if this is what you want. Saul > -Original Message- > From: Stephane Grenier [mailto:[EMAIL PROTECTED] > Sent: Monday, September 15, 2003 5:12 PM > To: Struts Users

RE: Validation question

2003-07-28 Thread Bailey, Shane C.
nt: Monday, July 28, 2003 3:59 PM To: 'Struts Users Mailing List' Subject: RE: Validation question Try errors.add(ActionErrors.GLOBAL_ERROR, new ActionError("errors.userNotFound", "userName"); -Original Message- From: Bailey, Shane C. [mailto:[EMAIL PR

RE: Validation question

2003-07-28 Thread Yansheng Lin
Try errors.add(ActionErrors.GLOBAL_ERROR, new ActionError("errors.userNotFound", "userName"); -Original Message- From: Bailey, Shane C. [mailto:[EMAIL PROTECTED] Sent: July 28, 2003 1:37 PM To: [EMAIL PROTECTED] Subject: Validation question I have been using the validator plug-in so

Re: Validation question

2003-02-20 Thread Steve Stair
You could create your own Validator It could keep a count of the number of fields that were validated, as well as whether any of the fields were non-empty. Then while the last field was being validated, if could add an error if the all the fields had been empty. -- Steve Stair [EMAIL PROTECTED]

Re: Validation question

2003-02-20 Thread Thomas . Gaudin
>> you could check at the Form bean level by setting the flag to true for any >> set . >> if false after all sets are invoked then u know no value is set >> Sangeetha Nagarjunan >> IT Solutions India Pvt. Ltd. >> Bangalore >> 080 - 6655122 X 2119 OK... Is there any way to do so for a DynaActionFo

Re: Validation question

2003-02-20 Thread Sangeetha Nagarjunan
you could check at the Form bean level by setting the flag to true for any set . if false after all sets are invoked then u know no value is set Sangeetha Nagarjunan IT Solutions India Pvt. Ltd. Bangalore 080 - 6655122 X 2119

Re: Validation Question?

2002-01-20 Thread David Winterfeldt
The issue is associating error messages, error message arguments, and validation information like masks, dates, etc. for different locales. Also it would start getting messy having regexp expression and other things all directly associtaed with the custom jsp tags. Also, to store this informatio