This might be a easy one. I currently have 1 dataset in a forEach and would like to iterate over a second one at the same time? Is this possible?
<c:set value="${dataList}" var="beans" />
<c:set value="${newDataList}" var="newBeans"/>
<c:forEach var="bean" items="${beans}" varStatus="loopCount">
If the collections are always equal in size, you can loop through one and access the second based on index.