Guest User

Untitled

a guest
Jan 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. $scope.inputData = [
  2. [1, 2, 3, 4, 5, 6, 7];
  3. [1, 2, 3, 4, 5, 6, 7];
  4. [1, 2, 3, 4, 5, 6, 7];
  5. [1, 2, 3, 4, 5, 6, 7];
  6. [1, 2, 3, 4, 5, 6, 7];
  7. [1, 2, 3, 4, 5, 6, 7];
  8. ]
  9.  
  10. th th th th th th
  11. 1 1 1 1 1 1
  12. 2 2 2 2 2 2
  13. 3 3 3 3 3 3
  14. ...
  15.  
  16. // first iteration:
  17. <td ng-repeat="item in inputData track by $index">{{item[0]}}</td>
  18. // second iteration:
  19. <td ng-repeat="item in inputData track by $index">{{item[1]}}</td>
  20. ...
Add Comment
Please, Sign In to add comment