RE: problem with client-side validation and ValidatorActionForm

2002-11-07 Thread Ryan Bell
if you've got validate=true set in your action ? Therefore allowing you to only validate on a specific action... -Original Message- From: Ryan Bell [mailto:ryan;messagecast.net] Sent: Wednesday, November 06, 2002 3:33 PM To: Struts Users Mailing List Subject: RE: problem with client-side

problem with client-side validation and ValidatorActionForm

2002-11-06 Thread Ryan Bell
Is there any way I can do both client and server side validation using ValidatorActionForms without setting up two 'forms' in my validation xml? I'm having a problem doing client-side validation because all my action mappings start with '/' and it's causing the generated javascript function to

RE: problem with client-side validation and ValidatorActionForm

2002-11-06 Thread Ryan Bell
doing client/server validation and leave out the / and it works fine) Pete -Original Message- From: Ryan Bell [mailto:ryan;messagecast.net] Sent: Wednesday, November 06, 2002 3:07 PM To: [EMAIL PROTECTED] Subject: problem with client-side validation and ValidatorActionForm

RE: problem with client-side validation and ValidatorActionForm

2002-11-06 Thread Ryan Bell
I only want to validate when a specific action is performed (server-side) so I'm extending the ValidatorActionForm for my form which is why I'm using the action-mapping in the as the form name in my validation file as described in the pdf of chapter twelve of Struts in action book: To enable