for some reason i am unable to loop over a collection in a coolection for
example:

i have a class with a field called "basket"
which is a collection of "Items" which contains a field called "contents".

for some reason i am unable to access the the contents in Item

with the follwing code:

<c:out value=${sessionScope.Cart.basket[0].content[0].name} />

or 

<c:forEach items="${sessionScope.Cart.basket}" var=i >
  <c:forEach items="${sessionScope.Cart.basket[i].contents}" var="x">
    <c:out value="${x.name}"/>
  </c:forEach>
</c:forEach>

i hope this make sense but the bottomline is iam trying to access a
collection  in a collection and i cant seem to be able to do it

thank you 
Louis


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

Reply via email to