Re: validate data problem in ActionForm - combine with tiles

2005-06-23 Thread Wendy Smoak
From: "Grzegorz Stasica" <[EMAIL PROTECTED]> > > The problem is that after I validate values in the method, the > controller forwards me to input page. Since I use tiles in my > application I'd like to be forwarded to tiles definition not input page > (I need to preserve header, menu etc). > >

Re: validate data problem in ActionForm - combine with tiles

2005-06-23 Thread Dave Newton
Michael Jouravlev wrote: 1) In action mapping: validate = "false" 2) Validate manually from Action class 3) Forward where you need. On 6/23/05, Grzegorz Stasica <[EMAIL PROTECTED]> wrote: hi, The problem is that after I validate values in the method, the controller forwards me to input pag

Re: validate data problem in ActionForm - combine with tiles

2005-06-23 Thread Michael Jouravlev
1) In action mapping: validate = "false" 2) Validate manually from Action class 3) Forward where you need. On 6/23/05, Grzegorz Stasica <[EMAIL PROTECTED]> wrote: > hi, > > The problem is that after I validate values in the method, the > controller forwards me to input page. Since I use tiles in

validate data problem in ActionForm - combine with tiles

2005-06-23 Thread Grzegorz Stasica
hi, The problem is that after I validate values in the method, the controller forwards me to input page. Since I use tiles in my application I'd like to be forwarded to tiles definition not input page (I need to preserve header, menu etc). The question is: Is it possible to use validate meth