I have the following
<tbody ng-repeat="history in orderHistory"> <tr> <td>{{history.reference_code}}</td> <div ng-repeat="items in history.orderedItems"> <td>{{items.product_description}}</td> <td>{{items.quantity}}</td> </div> <td> </tr> </tbody>
it seems that the second ng-repeat does not work and {{items.quantity}} or elements. shows nothing.
any ideas?
When I just test it as if it works
<div ng-repeat="history in orderHistory"> <div ng-repeat="items in history.orderedItems"> {{items.product_description}} </div> </div>
but i really need this inside the table
I tried the following:
<tbody> <tr ng-repeat="history in orderHistory"> <td>{{history.reference_code}}</td> <div ng-repeat="items in history.orderedItems"> <td>{{items.product_description}}</td> <td>{{items.quantity}}</td> </div> <td> </tr> </tbody>
and still not working
source share