Re: validation client-side. Problem with 2 submit buttons

2005-07-13 Thread Marc Demlenne
AM > Please respond to > "Struts Users Mailing List" > > > To > Struts Users Mailing List , Rafael Taboada > <[EMAIL PROTECTED]> > > > cc > > > > Subject > Re: validation client-side. Problem with 2 submit buttons > &g

Re: validation client-side. Problem with 2 submit buttons

2005-07-13 Thread Jeff Beal
Sorry -- missed the 'client-side' bit somehow. ;) On 7/13/05, Jeff Beal <[EMAIL PROTECTED]> wrote: > Set validation off in struts-config and call the Validate method from > within your Action: > > if (yourForm.getAction().equals("action_to_validate")) { > ActionErrors errors = form.validate(/*

Re: validation client-side. Problem with 2 submit buttons

2005-07-13 Thread BHansard
L PROTECTED]> 07/13/2005 11:30 AM Please respond to "Struts Users Mailing List" To Struts Users Mailing List , Rafael Taboada <[EMAIL PROTECTED]> cc Subject Re: validation client-side. Problem with 2 submit buttons I DO use struts validator framework ...

Re: validation client-side. Problem with 2 submit buttons

2005-07-13 Thread Jeff Beal
Set validation off in struts-config and call the Validate method from within your Action: if (yourForm.getAction().equals("action_to_validate")) { ActionErrors errors = form.validate(/*params*/); if (errors.isEmpty()) { // all is good } else { saveErrors(errors); return mapping.f

Re: validation client-side. Problem with 2 submit buttons

2005-07-13 Thread Marc Demlenne
I DO use struts validator framework ... What i want is to to have _only_ one of the submit button to check the client-side validation But I can only decide to call validator or not by form, not by button. As it is for client side that I have this problem, I can't call it from my modify method...

Re: validation client-side. Problem with 2 submit buttons

2005-07-13 Thread Rafael Taboada
Hi, use Validator framework. In this framework u can put code in order to set a client-side validation for each feld. In ur modify method, call to ur validate method. I hope it can help u -- Rafael Taboada Software Engineer Cell : +511-97753290 "No creo en el destino pues no me gusta tener

Re: validation client-side. Problem with 2 submit buttons

2005-07-13 Thread BHansard
mlenne <[EMAIL PROTECTED]> 07/13/2005 10:56 AM Please respond to "Struts Users Mailing List" To Struts Users Mailing List cc Subject validation client-side. Problem with 2 submit buttons Hello, Using struts validation framework, what's the best way t

validation client-side. Problem with 2 submit buttons

2005-07-13 Thread Marc Demlenne
Hello, Using struts validation framework, what's the best way to handle the following case : You have a simple form with 2 submit buttons. One for display, the other to modify changes. How to make the validation active only for modify button ? Server-side, you can simply have 2 actions name, on