WebWorkActions |
|
Your trail: |
Difference between
version 14
and
version 13:
At line 233 changed 1 line. |
<property name="personManager"><ref bean="personManager"/></property> |
<property name="personManager"> ref="personManager"/> |
At line 246 removed 1 line. |
<!--interceptor-ref name="validationStack"/--> |
At line 253 removed 2 lines. |
;:''The "validationStack" interceptor-ref is commented out in the above XML block because you haven't defined any validation rules for the Person object. We'll uncomment this value when we add validation in the next tutorial.'' |
|
At line 289 changed 2 lines. |
<ww:textfield label="getText('person.id')" name="'person.id'" |
value="person.id" required="true"/> |
<ww:textfield label="%{getText('person.id')}" name="person.id" |
value="%{person.id}" required="true"/> |
At line 297 changed 1 line. |
<ww:hidden name="'person.id'" value="person.id"/> |
<ww:hidden name="person.id" value="%{person.id}"/> |
At line 303 changed 1 line. |
document.forms["person"].elements["firstName"].focus(); |
Form.focusFirstElement(document.forms["personForm"]); |
Back to WebWorkActions,
or to the Page History.
|