Guest User

Untitled

a guest
Jul 18th, 2014
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. // Template file:
  2.  
  3. <table>
  4. <thead>
  5. <tr>
  6. <th>Name</th>
  7. <th>Dropdown</th>
  8. </tr>
  9. </thead>
  10. <tbody>
  11. <tr ng-repeat="sp in ServiceProviders">
  12. <td>{{sp.name}}</td>
  13. <td>
  14. <div class="dropdown">
  15. <button type="button" class="btn btn-default dropdown-toggle" bs-dropdown="dropdown">
  16. <span class="glyphicon glyphicon-cog"></span>
  17. </button>
  18. </div>
  19. </td>
  20. </tr>
  21. </tbody>
  22. </table>
  23.  
  24. // Controller
  25.  
  26. $scope.ServiceProviders = [{id: 1, name: "Test"}, {id: 2, name "Another"}];
  27. $scope.dropdown = [{text: "Test link", href: "view/sp/{{sp.id}}"}];
Advertisement
Add Comment
Please, Sign In to add comment