RE: form validation question

2004-01-28 Thread Andy Kriger
Looks like there is a functional change or bug in the action input attribute in Struts 1.1 - a forward name must be used instead of the location of a JSP or Action. Not sure why this change happened between 1.1RC and 1.1rel - maybe someone on the Struts dev team can answer? -Original Message--

RE: form validation question

2004-01-28 Thread Andy Kriger
It didn't make any difference if I used an action or the JSP for the input attribute. -Original Message- From: Geeta Ramani [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 6:55 PM To: Struts Users Mailing List Subject: Re: form validation question Ok, maybe, I'd hav

Re: form validation question

2004-01-27 Thread Geeta Ramani
to:[EMAIL PROTECTED] > Sent: Tuesday, January 27, 2004 3:27 PM > To: Struts Users Mailing List > Subject: Re: form validation question > > Andy: > > Any reason why you have the unusual "input" param..? > > > type="MyClass" > >

RE: form validation question

2004-01-27 Thread Andy Kriger
rian W. [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 5:10 PM To: 'Struts Users Mailing List' Subject: RE: form validation question Your orderForm does extend ValidatorForm instead of ActionForm right? The struts validator plug-in relies on your forms extending ValidatorF

RE: form validation question

2004-01-27 Thread Andy Kriger
ECTED] Sent: Tuesday, January 27, 2004 3:27 PM To: Struts Users Mailing List Subject: Re: form validation question Andy: Any reason why you have the unusual "input" param..? type="MyClass" > name="orderForm" > valida

Re: form validation question

2004-01-27 Thread Geeta Ramani
Andy: Any reason why you have the unusual "input" param..? type="MyClass" > name="orderForm" > validate="true" > input="/OrderForm.do" > scope="request"> > > > I woud have thought you'd use this instead: type="MyClass" >

RE: form validation question

2004-01-27 Thread Barnett, Brian W.
what do you have in mind? -Original Message- From: Geeta Ramani [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 3:05 PM To: Struts Users Mailing List Subject: Re: form validation question Andy: What do you see in the source of the html page..? Maybe it is just a question of display not work

RE: form validation question

2004-01-27 Thread Andy Kriger
-Original Message- From: Geeta Ramani [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 3:05 PM To: Struts Users Mailing List Subject: Re: form validation question Andy: What do you see in the source of the html page..? Maybe it is just a question of display not working right.

Re: form validation question

2004-01-27 Thread Geeta Ramani
Andy: What do you see in the source of the html page..? Maybe it is just a question of display not working right..? Geeta Andy Kriger wrote: > I am having a curious problem with form validation. I submit a form, see in > the logs that the form fails to validate, however, the webapp does not > r

RE: form validation question

2003-03-21 Thread Marco Tedone
The values specified in the are used by the validator as a replacement for the generic pattern {0}. If you give a closer look to the properties you should import(unless you won't specify yours) when using the validator, one of these will be: {0} is required What the causes is actually the value

Re: form validation question

2003-03-20 Thread Dan Allen
Andy Kriger ([EMAIL PROTECTED]) wrote: > I have a validation rule that looks like this... > >depends="mask"> > > > > mask > ^\s*\d*\s*$ > > > > However, it considers the phoneExt field required. Can anyone tell me why? > I want th

RE: Form Validation Question

2002-04-05 Thread David . A . Ventimiglia
Thanks! -Original Message- From: Ady Das-O'Toole [mailto:[EMAIL PROTECTED]] Sent: Friday, April 05, 2002 12:51 PM To: Struts Users Mailing List Subject: RE: Form Validation Question You can also set validate=false in your mapping, but call the form's validate method in y

RE: Form Validation Question

2002-04-05 Thread Zeltser, Mark
iginal Message- From: Zeltser, Mark [mailto:[EMAIL PROTECTED]] Sent: Friday, April 05, 2002 12:45 PM To: 'Struts Users Mailing List' Subject: RE: Form Validation Question How about creating 2 mappings where second mapping will have validation turned off? Mark. -Original Message

RE: Form Validation Question

2002-04-05 Thread David . A . Ventimiglia
From: Zeltser, Mark [mailto:[EMAIL PROTECTED]] Sent: Friday, April 05, 2002 12:45 PM To: 'Struts Users Mailing List' Subject: RE: Form Validation Question How about creating 2 mappings where second mapping will have validation turned off? Mark. -Original Message- From: [E

RE: Form Validation Question

2002-04-05 Thread Ady Das-O'Toole
tser, Mark [mailto:[EMAIL PROTECTED]] Sent: Friday, April 05, 2002 3:45 PM To: 'Struts Users Mailing List' Subject: RE: Form Validation Question How about creating 2 mappings where second mapping will have validation turned off? Mark. -Original Message- From: [EMAIL PROTE

RE: Form Validation Question

2002-04-05 Thread Zeltser, Mark
How about creating 2 mappings where second mapping will have validation turned off? Mark. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, April 05, 2002 3:36 PM To: [EMAIL PROTECTED] Subject: Form Validation Question Hello, I'm using a single Acti

Re: Form Validation Question

2001-10-01 Thread David Winterfeldt
You can put in any url in the input attribute. So there isn't a problem having input go through an action. David --- "DEHAMER,BRIAN (HP-MountainView,ex1)" <[EMAIL PROTECTED]> wrote: > If I want to use form validation with my ActionForm > bean, what should I > specify for the "input" attribute o