Advertisement
Guest User

Untitled

a guest
Sep 4th, 2015
1,150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.04 KB | None | 0 0
  1. <!-- Table -->
  2.                 <table class="table table-hover table-responsive table-condesed">
  3.                     <thead>
  4.                         <tr>                        
  5.                             <th class="active" ng-if="value == true" ng-repeat="(key, value) in tableColumns" ng-click="sort(key)">{{key}} <span class="glyphicon sort-icon" ng-show="sortKey==key" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"></span></th>
  6.                         </tr>
  7.                     </thead>
  8.                     <tbody ng-model="issue">
  9.                         <tr dir-paginate="issue in filteredIssue = ( issue | toArray : false | orderBy:sortKey:reverse | filter : search | stateFilters : myState | priorityFilters : myPriority | typeFilters: myType | assigneeFilters : myAssignee ) | itemsPerPage: customPagination ">
  10.                             <td ng-if="value == true" ng-repeat="(key, value) in tableColumns">{{issue[key]}}</td>
  11.                         </tr>
  12.                     </tbody>
  13.                 </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement