Guest User

Untitled

a guest
Jul 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. $scope.listInfo = {
  2. id : ['2','3'],
  3. officerName : ["Bob",'Alex'],
  4. userInfoId : ['3','5'],
  5. status: ["asd","asd"]
  6. };
  7.  
  8. <table class="table table-striped">
  9. <thead>
  10. <tr>
  11. <th>Id</th>
  12. <th>Officer Name</th>
  13. <th>User General Info Id</th>
  14. <th>Status Value</th>
  15. </tr>
  16. </thead>
  17. <tbody>
  18. <tr ng-repeat="option in listInfo.id">
  19. <td>{{option}}</td>
  20. <td></td>
  21. <td></td>
  22. <td></td>
  23. </tr>
  24. </tbody>
  25. </table>
Add Comment
Please, Sign In to add comment