Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to use the count from the JSTL forEach loop, but my code doesnt seem to work.

<c:forEach items="${loopableObject}" var="theObject" varStatus="theCount">
    <div id="divIDNo${theCount}">
    </div>
</c:forEach>

produces

<div id="divIDNojavax.servlet.jsp.jstl.core.LoopTagSupport$1Status@5570e2" >
share|improve this question
5  
Here is the class' javadoc: download.oracle.com/javaee/6/api/javax/servlet/jsp/jstl/core/… Look what getter methods it offers. Yes, among others there's a getIndex() :) – BalusC Jul 6 '11 at 17:51

2 Answers

up vote 34 down vote accepted

The variable set by varStatus is a LoopTagStatus object, not an int. Use:

<div id="divIDNo${theCount.index}">

To clarify:

  • ${theCount.index} starts counting at 0
  • ${theCount.count} starts counting at 1
share|improve this answer
..or maybe you need <div id="divIDNo${theObject}"> – Gedrox Jul 6 '11 at 17:51
5  
@Gedrox: I don't think so :) – BalusC Jul 6 '11 at 17:52

You can try this. similar result

 <c:forEach items="${loopableObject}" var="theObject" varStatus="theCount">
    <div id="divIDNo${theCount.count}"></div>
 </c:forEach>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.