I'm trying to get the following code to run:
<tr ng-repeat='row in rows'>
<td ng-repeat='num in row track by $index' id='{{idNum[row][num]}}'>
</tr>
idNum in this case is a 2D array of integers (0 to 41), but it doesn't seem to receive the first '[row]' value. I can only inset the '[num]' variable to return an array i.e. [0,1,2,3,4,5,6], but I'd like to get the values inside the array instead. Is there anyway to do this?