Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <table ng-init="getHouses()">
  2. <tr>
  3. <td>Id</td>
  4. <td>Name</td>
  5. </tr>
  6. <tr ng-repeat="h in houses>
  7. <td>{{h.Id}}</td>
  8. <td>{{h.Name}}</td>
  9. <td ng-init="peopleInhHouse(h.Id)">
  10. <span ng-repeat="p in peopleInHouse">p.Name</span>
  11. <br />
  12. </td>
  13. </tr>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement