Re: Action method specific custom validation

2008-07-09 Thread ManiKanta G
Thanks... I'll try right away... Regards, ManiKanta Gabriel Belingueres wrote: Yes. To form the validation method name just concatenate "validate" with your action's method name. 2008/7/9 ManiKanta G <[EMAIL PROTECTED]>: Hi, I've three execute() kind of methods in single action. To valid

Re: Action method specific custom validation

2008-07-09 Thread Gabriel Belingueres
Yes. To form the validation method name just concatenate "validate" with your action's method name. 2008/7/9 ManiKanta G <[EMAIL PROTECTED]>: > Hi, > > I've three execute() kind of methods in single action. > > To validate the data, we can use actionName-actionAliasName-validation.xml > for valida

Action method specific custom validation

2008-07-09 Thread ManiKanta G
Hi, I've three execute() kind of methods in single action. To validate the data, we can use actionName-actionAliasName-validation.xml for validating actionName specific validations. But how to write custom validate() to deal specifically based on the method being requested. Is there are pro