I\'m trying to create a grid using bootstrap 3 and angularjs.
The grid I\'m trying to create is this, repeated using ng-repeat.
You can simply chunk your array into subarrays of N inside of your controller. Sample code:
var array = ['A','B','C','D','E','F','G','H'];
var chunk = function(arr, size) {
var newArr = [];
for (var i=0; i
Now in *.html file You simply ng-repeat through the array
{{item}}
That workout for me :) Good luck!