You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by "Harland, David" <Da...@dlapiper.com> on 2005/07/12 17:49:13 UTC

How do you iterate within an iterate

How would I replace the following with the iterate tag

	<%
		ArrayList bookings =
(ArrayList)request.getAttribute(BOOKINGS);
		Iterator bookingsiterator = bookings.iterator();
		while(bookingsiterator.hasNext()) {
			Bookings booking =
(Bookings)bookingsiterator.next();
	%>

			<td><%=booking.getBookingType()%></td>

  		<%
			ArrayList bookingData = booking.getArrayList();
  			Iterator dataiterator = bookingData.iterator();
			while(dataiterator.hasNext()) {
				LabelValuePair labelValuePair =
(LabelValuePair)dataiterator.next();
  		%>	

        			<td><%=labelValuePair.getLabel()%></td>
        			<td><%=labelValuePair.getValue()%></td>

  		<%
			}
  		%>

  	<%
		}
  	%>

This e mail is from DLA Piper Rudnick Gray Cary UK LLP.

The contents of this email and any attachments are confidential to the intended recipient. They may not be disclosed to or used by or copied in any way by anyone other than the intended recipient. If this email is received in error, please contact DLA Piper Rudnick Gray Cary UK LLP on +44 (0) 8700 111111 quoting the name of the sender and the email address to which it has been sent and then delete it.

Please note that neither DLA Piper Rudnick Gray Cary UK LLP nor the sender accept any responsibility for viruses and it is your responsibility to scan or otherwise check this email and any attachments. 

DLA Piper Rudnick Gray Cary UK LLP is a limited liability partnership registered in England and Wales (registered number OC307847) which provides services from offices in England, Belgium, Germany and the People's Republic of China.  A list of members is open for inspection at its registered office and principal place of business 3 Noble Street, London EC2V 7EE.  Partner denotes member of a limited liability partnership.

DLA Piper Rudnick Gray Cary UK LLP is regulated by the Law Society and is a member of DLA Piper Rudnick Gray Cary, a global legal services organisation, the members of which are separate and distinct legal entities.  For further information, please refer to www.dlapiper.com.




---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
For additional commands, e-mail: user-help@struts.apache.org