I have an array with a list of objects. Each object also contains an array (see below). I use ng-repeat to iterate over a child array for each object, I tried many different ways, but it just doesn't work at all. Any hint, direction, help would be greatly appreciated. Thanks.: -)
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.19/angular.js"></script> <script> angular.module('mlApp', []) .controller('mlCtrl', [function () { var self = this; self.contacts = [ { contact: 'AAA', mlist: [1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1] }, { contact: 'BBB', mlist: [0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1,1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1] } ]; } ]); <div ng-app="mlApp" ng-controller="mlCtrl as mCtrl"> <table> <thead>..</thead> <tbody> <tr ng-repeat="p in mCtrl.contacts"> <th width="100px" >{{p.contact}}</th> <td ng-repeat="c1 in p.mlist"><input type="checkbox" ng-check='{{c1}}' /></td> </tr> </tbody> </table> </div>