Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple ng-repeat on single element

Is this possible to achieve a code like this:-

<tr ng-repeat="data in dataArray,value in valueArray">
       {{data}} {{value}}
 </tr>

I am having two arrays I want to show them in single row.
PS: I am not asking for syntax. I am looking for logic to achieve this

Thanks

Like :- "http://jsfiddle.net/6ob5bkcx/1/"

like image 285
squiroid Avatar asked Jan 12 '15 12:01

squiroid


4 Answers

You should be doing this in the controller, not in the view. Map the dataValues into a key/value pair object and reference the values array using an index. This assumes that each data key has a corresponding value key.

Controller:

var dataArray = [];
var valueArray = [];
this.repeatData = dataArray.map(function(value, index) {
    return {
        data: value,
        value: valueArray[index]
    }
});

View:

<tr ng-repeat="data in repeatData">
    {{data.data}} {{data.value}}
</tr>
like image 136
CodingIntrigue Avatar answered Oct 11 '22 23:10

CodingIntrigue


Angular ng-repeat does not support it but still you can write your own custom directive according to your requirements.

Update Section

var traverseCollection = angular.module("CollectionTraverse", []);

traverseCollection.directive("repeatCollection", function(){

    return {
        restrict: "A",
        scope: {
            model: "="
        },
        controller: controller: function($scope) {
            var collectionList = $scope.model;

            angular.forEach(collectionList, function(obj, index) {
                angular.forEach(obj, function(data, index) {

                });
            });
        }
    }
});

Your scope should contains the list of your collection objects : $scope.collectionList = [dataArray, valueArray];

Usage in HTML:
-------------------------------------------
<div repeat_collection model="collectionList"></div>

This directive will be generic to traverse list of collections and yes in the above code there can be some syntactical errors because i did not run it. Its your luck.

like image 45
Suneet Bansal Avatar answered Oct 12 '22 00:10

Suneet Bansal


Does this suits your need

http://jsfiddle.net/jmo65wyn/

Your data, value array as object array

 this.obj = [{data: 'a', value :true}, {data: 'b', value:true}];

And you loop like this

 <div ng:repeat="o in obj">
       {{o.data}} and {{o.value}} 
         <input type="checkbox" ng:model="o.value">
    </div>
like image 43
Anand Avatar answered Oct 11 '22 23:10

Anand


If you have, for any reason, two arrays with the same length and where their contents are corresponding (array1[0] correspond to array2[0], ..., array1[n] correspond to array2[n]), you can use AngularJS's track by (which was introduced for the 1st time in the version 1.1.4) like this for example :

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.4/angular.min.js"></script>

<table ng-app="" ng-init="names=['Bill','Billa','Billy']; ages=['10', '20', '30']">
  <tr ng-repeat="name in names track by $index">
    <td>{{ name }} is {{ ages[$index] }} years old.</td>
  </tr>
</table>

Hope that can help.

like image 40
akmozo Avatar answered Oct 11 '22 23:10

akmozo