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 &
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
2 matches
Mail list logo