| Author |
using Map for logic:iterate
|
John Smith
Greenhorn
Joined: Oct 07, 2003
Posts: 15
|
|
I am trying to use Map for logic:iterate, but i can't figure it out. can someone help me out? <form-bean name="messageOptionsForm" type="org.apache.struts.action.DynaActionForm"> <form-property name="address" type="java.util.Map" /> </form-bean> Map value = new HashMap(); value.put("city1", "Boston"); dynaForm.set("address", value); value.put("city2", "New York City"); dynaForm.set("address", value); request.setAttribute("addresses", value); <logic:iterate id="address" name="addresses" indexId="idx"> <tr> <td><html:radio name="address" property="value" value="address(key)"/>: <bean:write name="address" property="value"/></td> </tr> </logic:iterate> Thanks..
|
 |
 |
|
|
subject: using Map for logic:iterate
|
|
|