Refer:
http://struts.apache.org/faqs/indexedprops.html

>          <logic:iterate id="entry" name="problemBean" property="items" >
>            <tr>
>              <td>Problematic input</td>
>              <td>
>                <html:text name="entry"
>                  property="integer_value" indexed="true"/>
>              </td>
>            </tr>
>          </logic:iterate>


Try the one below:

<logic:iterate id="entry" name="problemBean" property="items" indexId="ctr">
           <tr>
             <td>Problematic input</td>
             <td>
               <html:text name="problemBean"
                 property='<%="items["+ctr+"].integer_value"%>'/>
             </td>
           </tr>
</logic:iterate>

Thanks,
Kishore Senji.

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

Reply via email to