Hi,
My project is on
Struts 1.2.
I am having an arraylist say List and that list has litst of Objects say obj.
Now Obj has one filed as hashmap.
When I try to poupalte these hashmap values in different textboxes in
JSP it is working fine. But when I hit Submit values this hashmap is not getting populated.
Here is code snippet...
<c:forEach items="${List[1].TermAmtMap}" var="th2Obj">
<html:text property="${th2Obj.key}" value="${th2Obj.value}" size="7"/>%
(<c:out value="${th2Obj.key}" /> Y)
</c:forEach>
Please let me know how this can be handled.
Thanks in advance