Re: MappingDispatchAction usage

2005-04-01 Thread Jeff Beal
You can turn off the framework's validation, and specifically call validate in the methods where you want it. /** Java code off the top of my head; may not compile public ActionForward create(mapping,form,request,response) { ActionErrors validations = form.validate(); if (validations != null &

MappingDispatchAction usage

2005-03-31 Thread Nic Werner
For the 1.2 users: I have a simple CRUD unit that I'm working on. Instead of creating an action for each one, I originally used DispatchAction to merge them all into one action. This allowed me to have my Create/Update page re-use the same JSP - I included a hidden param for the respective metho