angularjs - Displaying the elements in an array twice using single ng-repeat -


i have code in below link. http://jsfiddle.net/96dgl1ga/

as can see, have used below code 2 times display output.

<tbody>   <tr ng-repeat="track in machine.notematrix2">     <td ng-repeat="step in track">       <div ng-model="step.value">         {{step.value}}       </div>     </td>   </tr> </tbody> 

how can achieve same output coding once.


Comments

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -