Using indexed="true" will generate names such as menuAction[0],
menuAction[1] etc...

            <html:select name="menuEntries" property="menuAction"
indexed="true">

Niall

----- Original Message ----- 
From: "Srilatha Salla" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, November 05, 2004 4:41 PM
Subject: Hi


> Hi,
>
> I have a logic:iterate tag in my jsp.
>
>
>  <logic:iterate name="autoForm" property="menuEntries" id="menuEntries">
>              <tr>
>              <td valign="middle">
>              <bean:write name="menuEntries" property="key"/>
>              <html:hidden name="menuEntries" property="key"/>
>             </td>
>              <td valign="middle">
>              <html:text name="menuEntries" property="description"
size="15" maxlength="15"/>
>              </td>
>              <td valign="top">
>                <html:select name="menuEntries" property="menuAction">
>                 <html:option value="">Select A Action</html:option>
>                  <html:options name="actionNames"
labelName="actionNames"/>
>                   </html:select>
>                  </td>
>
> I have 11 rows to iterate.
> for each html:select i have to invoke onchange method such that depending
on the selection(for example if have options a,b,c,d in dropdownlist, i have
to display a textfield called phonenumber only for options a,c.). My problem
is i have to send some parameter in the onchange method, but since it is
iteration every iteration has same propertyname,
> I have "menuAction" as property name for htmlselect.
>
> I should be able to get the phonenumber  only for the options i sent when
i load the page.(Iike edit page)
>
> I would appreciate if anyone can help me.
>
> Thanks,
> Latha
>
> __________________________________________________
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com



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

Reply via email to