I am trying to build a table with angularJS ng-repeat with double entry points. Here is an example:
Column A Column B Column C
Object 1 X Y
Object 2 P
Object 3 N
In the table above, "Object 1" has 2 sub-objects: X and Y that belong to the columns A and C respectively.
I need to be able to match the rows content to the column heading. I am not sure what what JSON structure do I need or how to use ng-repeat properly to do this ?