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.

How would I use AngularJS ng-repeat to display the following HTML (Twitter Bootstrap Scaffolding)? Essentially, every third record I need to close the </div>, print an <hr>, then open another <div class="span4">

    <div class="row">
      <div class="span4">
        <h3>
          Project A
        </h3>
      </div>
      <div class="span4">
        <h3>
          Project B
        </h3>
      </div>
      <div class="span4">
        <h3>
          Project C
        </h3>
      </div>
    </div>

    <hr>

    <div class="row">
      <div class="span4">
        <h3>
          Project D
        </h3>
      </div>
      <div class="span4">
        <h3>
          Lab Title
        </h3>
      </div>
      <div class="span4">
        <h3>
          Project E
        </h3>
      </div>
    </div>

I've created a fiddle for code demos.
http://jsfiddle.net/ADukg/261/

share|improve this question

2 Answers

up vote 7 down vote accepted

A more elegant way is to use the view model to provide a chunked collection and then let the view handle it like

<div ng-controller="Controller">
    Projects <input ng-model="projects"></input>
    <hr/>
    <div ng-repeat="row in rows">
        <div ng-repeat="project in row">
            Projects {{project}}
        </div>
        <hr/>
    </div>
</div>​

and the coffeescript is pretty simple

# Break up an array into even sized chunks.
chunk = (a,s)->
    if a.length == 0
        []
    else               
        ( a[i..i+s-1] for i in [0..a.length - 1 ] by s)

@Controller = ($scope)->
    $scope.projects = "ABCDEF"

    $scope.$watch "projects", ->      
       $scope.rows = chunk $scope.projects.split(""), 3

angular.bootstrap(document, []);

http://jsfiddle.net/ADukg/370/

share|improve this answer

Here's a way:

<div ng-controller="MyCtrl">
  <div ng-repeat="project in projects">
    <span ng-switch on="$index % 3">
      <span ng-switch-when="0">
        <hr />
        <div class="row">
          <h3 class="span4" ng-show="projects[$index+0]">{{projects[$index+0]}}</h3>
          <h3 class="span4" ng-show="projects[$index+1]">{{projects[$index+1]}}</h3>
          <h3 class="span4" ng-show="projects[$index+2]">{{projects[$index+2]}}</h3>
        </div>
      </span>
    </span>
  </div>
</div>

This way will also work if you have for example 7 data items: on the last 3 data, it will only show item 7 and not try to show the nonexistant item 8 and 9.

http://jsfiddle.net/4LhN9/46/

share|improve this answer
This is actually a pretty clever solution. But how would you handle the case where the data set length is not divisible by 3? For example say you were displaying images... $index+0 on the last row points to an img url, but +1 and +2 are empty. – rob Jan 20 at 5:11
Figured it out. Just do ng-show="!(($index+x)>(art.length-1))" on the img, where x is 0, 1, 2 respectively. Angular is so slick. – rob Jan 20 at 5:28
This is brilliant. @andy add rob's ng-show idea, here and to your fiddle! – Thom Porter Mar 31 at 8:56
Ok, updated and edited :) – Andy Joslin Mar 31 at 23:28
Very creative way to address this. However, this method breaks when trying to use a filter, leading to wholly unexpected results. Example: jsfiddle.net/J2CTu – Sean O Apr 10 at 15:46

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.