From: "Paulo César M. Jeveaux" <[EMAIL PROTECTED]>

> Now i have two text boxes of same property So when i
> enter any value in 1 text box same value assigned for another text box
> as they have same property name.

Do you care about the order?  If not, it seems like a String[] should work
(it certainly does with multibox).  If not, you'll need indexed properties
so Struts can fill a position in the array for each text box.

>  as DynaForm Doesn't support array property

Not true.  This:
  <form-bean name="accountForm"
            type="edu.asu.vpia.struts.AccountForm">
            <form-property     name="accounts"
type="java.lang.String[]"/>
  </form-bean>
where AccountForm is a DynaValidatorActionForm, works fine.

It will really help if you post some of your code, it's difficult to figure
out what's going on just from a description.

-- 
Wendy Smoak


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

Reply via email to