> I have a collection (of ArrayLists) within a collection of (ArrayLists). > In my action class I call a method that returns a collection of > historyItems. I set that in request scope: > For each historyItem iteration, I want to iterate though the deltaItems: > How can I do this? How do I refer to the deltaItem collection within each > historyItem collection?
Is JSTL an option? You can nest <c:forEach> tags and iterate through collections of collections. -- Wendy Smoak Applications Systems Analyst, Sr. Arizona State University PA Information Resources Management

