Try putting some debugs into your action class...
probably your pre-population logic is running over your edited data!

Nitesh
----- Original Message ----- From: "Ciaran Hanley" <[EMAIL PROTECTED]>
To: "'Struts User Mailing List'" <struts-user@jakarta.apache.org>
Sent: Thursday, June 30, 2005 3:11 PM
Subject: DynaActionForm values problem after submit


Can anybody help me with the problem below please. I've hit a brick wall
with it! :)

-----Original Message-----
From: Ciaran Hanley [mailto:[EMAIL PROTECTED]
Sent: 28 June 2005 20:02
To: 'Struts User Mailing List'
Subject: Unable to read DynaForm array values

I have the following DynaActionForm bean (where EditPaymentForm extends
DynaActionForm so I can use the validation method) and corresponding action
mapping

<form-bean name="paymentsForm" type="app.EditPaymentForm">
 <form-property name="payments" type="app.PaymentBean[]"/>
 <form-property name="name" type="java.lang.String" />
</form-bean>

<action path="/editpayments"
       type="app.EditPaymentAction"
       name="paymentsForm"
       scope="session">
</action>


I pre-populate this form in my Action class for display on a JSP for
editing. The values show up fine in the JSP text boxes. When the form is
submitted the String name property changes fine, but the values in the
payments array is not being saved. I just get the original pre-populated
data when I use the get methods after submitting.

Here is a snippet from the JSP

<html:form action="/editpayments?action=edit">
 <logic:iterate name="paymentsForm" property="payments" id="PaymentBean">
   <html:text name="PaymentBean" property="paymentAmount" indexed="true" />
 </logic:iterate>
 <html:text property="name" />

<!-- etc -->


And here is form class

public class EditPaymentForm extends DynaActionForm implements Serializable
{
     public ActionErrors validate(ActionMapping mapping, HttpServletRequest
request)
     {
           //custom checks
     }
}

Can anybody help me figure out why the values aren't being saved upon
submitting the form please?

Thanks



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to