Re: Validation on methods

2008-04-24 Thread Laurie Harper
is called, the method validate() is executed. The same action class used with struts.xml-parameter method=save is also executed as expected, but validate is never called. I thought, i could exclude methods from validation, but how do i include one ? this interceptor-ref name=validation param name

Validation on methods

2008-04-23 Thread volker
as expected, but validate is never called. I thought, i could exclude methods from validation, but how do i include one ? this interceptor-ref name=validation param name=includeMethodssave/param /interceptor-ref does not work. thanks in advance Volker

Re: Validation on methods

2008-04-23 Thread Márcio Gurgel
exclude methods from validation, but how do i include one ? this interceptor-ref name=validation param name=includeMethodssave/param /interceptor-ref does not work. thanks in advance Volker - To unsubscribe, e-mail

Re: Validation on methods

2008-04-23 Thread Volker Karlmeier
, but validate is never called. I thought, i could exclude methods from validation, but how do i include one ? this interceptor-ref name=validation param name=includeMethodssave/param /interceptor-ref does not work. thanks in advance Volker

Validation for methods in DispatchAction

2005-02-20 Thread Stjepan Brbot
I use DispatchAction for CRUD activities in my application. Using methods like create, populate, update etc. I manage each particular activity for my entity (e.g. User) but in some of these activities I need validation (e.g. update/create) and in some of them not (e.g. populate/delete).