I am curious to know if I can utilize ng-repeat with a model structured in the following way:
Illustrative Model:
$scope.items = {
item1:{[1,2,3,4,5]},
item2:{[a,b,c,d,e]},
item3:{[a1,b2,c3,d4,e5]}
};
The desired table format using ng-repeat would be as follows:
-------------------------
| Item1 | Item2 | Item3 |
-------------------------
| 1 | a | a1 |
| 2 | b | b2 |
| 3 | c | c3 |
| 4 | d | d4 |
| 5 | e | e5 |
-------------------------
If achieving this layout is not feasible with the current model structure, could you kindly propose some alternatives? Your assistance would be highly appreciated. Thank you in advance.