By overriding the value in each text field you will never get the user enter value after validation
fails.
You should (at least how i understand), populate the action form with values in a
"PreAction"
i.e.
PreAction -> display to user -> PostAction
The preaction takes in the action form and populates its default values. Then you can using the
struts "html" tag as they are intended
Regards,
Gareth
[EMAIL PROTECTED] wrote:
Hi all!
Lets say I have a form with two text fields on a jsp page:
<html:text property="project" value="${beanFromSessionScope.project}" />
<html:text property="version" value="${beanFromSessionScope.version}" />
Both text fields are validated (I use a DynaValidatorForm) and a text is
required for both. If the user changes both text fields (lets say deletes
project and changes version), validation fails and the user is send back to
the
text fields. But now the text in the field "version" shows again the
${beanFromSessionScope.version} value, and not the one previously changed
by the user. A workaround:
<logic:empty name="org.apache.struts.action.ERROR">
<html:text property="project"
value="${beanFromSessionScope.project}" />
</logic:empty>
<logic:notEmpty name="org.apache.struts.action.ERROR">
<html:text property="project" />
</logic:notEmpty>
<logic:empty name="org.apache.struts.action.ERROR">
<html:text property="version"
value="${beanFromSessionScope.version}" />
</logic:empty>
<logic:notEmpty name="org.apache.struts.action.ERROR">
<html:text property="version" />
</logic:notEmpty>
Is there a simpler way to achieve this?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
--
Gareth Evans
MSoft eSolutions Limited
Technology Centre
Inward Way
Rossmore Business Park
Ellesmere Port
Cheshire
CH65 3EN
--
Tel: +44 (0)870 0100 704
Fax: +44 (0)870 9010 705
E-Mail: [EMAIL PROTECTED]
Web: www.msoft.co.uk
----------------------------------------------
Terms:
Please note that any prices quoted within this e-mail are subject to VAT.
All program details and code described in this e-mail are subject to
copyright © of MSoft eSolutions Limited and remain the intellectual
property of MSoft eSolutions Limited.
Any proposal or pricing information contained within this e-mail are
subject to MSoft eSolutions' Terms and Conditions
----------------------------------------------
Disclaimer:
This message is intended only for use of the addressee. If this message
was sent to you in error, please notify the sender and delete this
message. MSoft eSolutions Limited cannot accept responsibility for viruses,
so please scan attachments. Views expressed in this message do not
necessarily reflect those of MSoft eSolutions Limited who will not
necessarily be bound by its contents.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]