RE: Form Validation Before Submit

2004-06-15 Thread Ciaran Hanley
data is even entered yet I cannot figure it out. Ciaran -Original Message- From: ksitron [mailto:[EMAIL PROTECTED] Sent: 15 June 2004 17:02 To: Struts Users Mailing List Subject: Re: Form Validation Before Submit In your struts-config.xml, if you have the validate="true"

Re: Form Validation Before Submit

2004-06-15 Thread Lionel
Ciaran Hanley wrote: > Hello, > > > > I have a simple form in my application which I am having trouble with. > > > > On entering the action class and forwarding to the JSP I see error > messages which should only appear when the form has been validated > after submitting. do you check that the for

RE: Form Validation Before Submit

2004-06-15 Thread Geeta Ramani
Ciaran: Try specifically adding "validate=false" and see what happens..? Geeta > -Original Message- > From: Ciaran Hanley [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 15, 2004 11:28 AM > To: 'Struts Users Mailing List'; [EMAIL PROTECTED] > Subject

RE: Form Validation Before Submit

2004-06-15 Thread Ciaran Hanley
PROTECTED] Sent: 15 June 2004 17:02 To: Struts Users Mailing List Subject: Re: Form Validation Before Submit In your struts-config.xml, if you have the validate="true" set. Then, the validate method of your form will be called before your action.execute method is called. Ciaran Hanley wrot

RE: Form Validation Before Submit

2004-06-15 Thread Ciaran Hanley
: [EMAIL PROTECTED] Subject: Re: Form Validation Before Submit Ciaran- Sounds like you may possibly have key or mouse events hooked to JavaScript? Could you display for us the entire Form Header (specifically the JavaScript portion) for us? Gura mie ayd, Martin - Original Message - From

Re: Form Validation Before Submit

2004-06-15 Thread ksitron
In your struts-config.xml, if you have the validate="true" set. Then, the validate method of your form will be called before your action.execute method is called. Ciaran Hanley wrote: Hello, I have a simple form in my application which I am having trouble with. On entering the action class and

Form Validation Before Submit

2004-06-15 Thread Ciaran Hanley
Hello, I have a simple form in my application which I am having trouble with. On entering the action class and forwarding to the JSP I see error messages which should only appear when the form has been validated after submitting. I cannot figure out why this is appearing as all that is call