Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <label>Type:</label>
  2. <select ng-model="filterType" ng-options="item.type as item.type for item in samples | unique:'type'">
  3. <option value="">Select</option>
  4. </select>
  5.  
  6.  
  7. <table class="table">
  8. <tr>
  9. <th>#</th>
  10. <th>Name</th>
  11. <th>Type</th>
  12. <th>Status</th>
  13. </tr>
  14.  
  15. <tr ng-repeat="item in samples | filter:filterType">
  16. <td>{{item.id}}</td>
  17. <td>{{item.name}}</td>
  18. <td>{{item.type}}</td>
  19. <td>{{item.status}}</td>
  20. </tr>
  21.  
  22. <tr ng-repeat="item in samples | filter:{status: filterStatus, type: filterType} ">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement