I am working on a project where i would like to combine two ng-repeat toghether, has anyone an idea as to how to do this?
Something like this:
<th ng-repeat="header in headers"> <ul class="dropdown-menu" aria-labelledby="dropdownMenu"> <li class="divider"></li> <li ng-repeat="row in rows"> **{{row.{{header.data}}}**} //what is the right syntax </li> </ul> </th>