I have a ArrayList of CustomerBean.
CustomerBean
Property:customer_name Type: String
Property:numbers Type: ArrayList that stores Strings
In my Action class, i return the ArrayList through request scope.
request.setAttribute("CustomerList", customerList);
In my view, i have something,
<logic:iterate name="CustomerList" id="CustomerBean">
<bean:write name="CustomerBean" property="customer_name"/>
<nested:root name="CustomerBean">
<nested:iterate property="number">
<td><How should i get the String stored in the number
ArrayList?></td>
</nested:iterate>
</nested:root>
</logic:iterate>
Sorry but i've tried searching through the mailing list but couldn't find an
answer to what i exactly want.
Thanks for any inputs!