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'm using JSTL to loop over a list of shop objects. It looks like the following:

    <c:forEach items="${shops}" var="shop"> 
       <div class="odd">
            <li class="table-shop">${shop.name}</li>
       </div> 
    </c:forEach>

Now I want to be able to get the shop's position in the list. For example if it's the first shop, I'd like to print out 0 next to the name of the shop.

What's the best way I do this?

share|improve this question

2 Answers

up vote 3 down vote accepted

Use varStatus, e.g.:

<c:forEach items="${shops}" var="shop" varStatus="loop"> 
   <div class="odd">
        <li class="table-shop">${loop.index} ${shop.name}</li>
   </div> 
</c:forEach>
share|improve this answer
<c:forEach items="${shops}" var="shop" varStatus="status"> 
       <div class="odd">
            ${status.count}
            <li class="table-shop">${shop.name}</li>

       </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.