ValidationAndList |
|
Your trail: |
Difference between
version 15
and
version 14:
At line 90 changed 1 line. |
So now, as long as your web/pages/personForm.jsp has <html:form action="savePerson">, validation should kick in when we try to save this form. Run __ant db-load deploy__, start Tomcat and go to [http://localhost:8080/appfuse/editPerson.do?action=Edit&id=1]. |
So now, as long as your web/pages/personForm.jsp has <html:form action="savePerson">, validation should kick in when we try to save this form. Run __ant db-load deploy__, start Tomcat and go to [http://localhost:8080/appfuse/editPerson.do?id=1]. |
At line 191 changed 3 lines. |
Person person = (Person) convert(obj); |
|
return dao.getPersons(person); |
return dao.getPersons((Person) person); |
At line 262 changed 1 line. |
List persons = mgr.getPersons(personForm); |
List persons = mgr.getPersons(convert(personForm)); |
Back to ValidationAndList,
or to the Page History.
|