RE: Struts Validation issue

2007-12-10 Thread Vaibhav Khare
ing the prepare > method > > We ended up with option 1. I'd be interested to find out if there is > better solution too. > > -Original Message- > From: Vaibhav Khare [mailto:[EMAIL PROTECTED] > Sent: Monday, December 10, 2007 10:37 AM > To: user@struts.apache.o

RE: Struts Validation issue

2007-12-10 Thread Jiang, Jane (NIH/NCI) [C]
EMAIL PROTECTED] Sent: Monday, December 10, 2007 10:37 AM To: user@struts.apache.org Subject: Struts Validation issue Hi, I am using Struts validation framework in my project. My form becomes null whenever I try to do some validation. The validation works fine but the next time it comes on the UI, the

Re: Struts Validation issue

2007-12-10 Thread Vaibhav Khare
t; >> >> When I do the validation, this tag fails as the list comes null the >> second >> time.. >> Any help is highly appreciated. >> >> Thx >> -- >> View this message in

Re: Struts Validation issue

2007-12-10 Thread Paul Benedict
. > > Thx > -- > View this message in context: > http://www.nabble.com/Struts-Validation-issue-tp14255159p14255159.html > Sent from the Struts - User mailing list archive at Nabble.com. > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >

Struts Validation issue

2007-12-10 Thread Vaibhav Khare
list comes null the second time.. Any help is highly appreciated. Thx -- View this message in context: http://www.nabble.com/Struts-Validation-issue-tp14255159p14255159.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Struts validation issue

2004-10-15 Thread Andy Richards
Thanks, pedro Couldnt resolve this one! upgraded to struts 1.2.4 and used a reqular expression to validate instead. Not quite the method i wanted to take but one which resolved the issue. Thanks for your contribution Andy Pedro Salgado wrote: Have you checked if you aren't duplicating configurat

Re: Struts validation issue

2004-10-11 Thread Pedro Salgado
Have you checked if you aren't duplicating configurations on more than 1 file? (configFile1, ..., configFileN... N replaces configurations that are also present (duplicate) in 1). Are you working with modules? Is the forward pointing to a correct action? (try putting validate = false... and

Struts validation issue

2004-10-11 Thread Andy Richards
hi, i have created my own validator class for validating certain fields which are beyond the default validation scope (e.g. telephone, postcode, username already exists etc.) and have linked it to the validator-rules.xml file. when the input field is invalid, i do get the appropriate error msg so