RE: Help with ValidatorForm

2002-11-07 Thread Jarnot Voytek Contr AU HQ/SC
PM To: 'Struts Users Mailing List' Subject: RE: Help with ValidatorForm Eddie wrote: Gotcha! Validate defaults to true :-O ... so set it to false in your populate action ;-) Will do... but how could you *ever* set it to true with a LookupDispatchAction? It's validating *before* the form

Re: Help with ValidatorForm

2002-11-07 Thread Eddie Bush
I typically go for seperate Action subclasses. The dispatch stuff works really well, but, having not found a way to have one function of the action not validate - and the rest validate - I have copped out to the quick fix :-(. I'd be most interested if someone knows how you can use a

Re: Help with ValidatorForm

2002-11-06 Thread Eddie Bush
Gotcha! Validate defaults to true :-O ... so set it to false in your populate action ;-) -- Eddie Bush -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:struts-user-help;jakarta.apache.org

RE: Help with ValidatorForm

2002-11-06 Thread Wendy Smoak
Eddie wrote: Gotcha! Validate defaults to true :-O ... so set it to false in your populate action ;-) Will do... but how could you *ever* set it to true with a LookupDispatchAction? It's validating *before* the form is ever displayed for the first time. Of course it's going to fail! I am