Hello all,
I have a DynaActionForm with two properties of type String[],
one named priorities and the other named owner
I am having problem in displaying their value in my jsp using
logic:iterate
My JSP is as follows
<logic:iterate name="myForm"
property="priorities" indexId="idx"
id="item">
<tr>
<td align="left"> <html:text property="owners"
value='<%="owners[" + idx.toString() + "]"%>' size="5"/>
</td>
<td align="left">
<html:select property="priorities"
value='<%="priorities[" + idx.toString() + "]"%>'>
<html:option value="
1">1</html:option>
<html:option value="
2">2</html:option>
<html:option value="
3">3</html:option>
<html:option value="
4">4</html:option>
<html:option value="
5">5</html:option>
</html:select>
</td>
</tr>
</logic:iterate>
somehow I cannot set the value of both owners and priorities for each
line..
anyone could help? Unfortunately I cannot use JSTL .... so if someone
could point out what I am doing wrong.......
thanx in advance and regards
marco
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]