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 have a repeat control that cycles through documents in a view and in a computed field I return something like:

<li>Link here</li>

I need a method or a way to get the last index and when it is reached the computed field should return:

<li class="last">Last link here</li>

Something like:

if(index.lastDoc()){
    return "<li class="last"></li>
    } else {
    return "<li></li>
    }
share|improve this question

1 Answer

up vote 1 down vote accepted

Ok I got it, I was doing this all along but I had no idea that the Index is starting from 0. All I had to do is add one.

var docs = servicesData.getAllEntries().getCount();

if (repeatCount + 1 == docs)
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.