Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- Table -->
- <table class="table table-hover table-responsive table-condesed">
- <thead>
- <tr>
- <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>
- </tr>
- </thead>
- <tbody ng-model="issue">
- <tr dir-paginate="issue in filteredIssue = ( issue | toArray : false | orderBy:sortKey:reverse | filter : search | stateFilters : myState | priorityFilters : myPriority | typeFilters: myType | assigneeFilters : myAssignee ) | itemsPerPage: customPagination ">
- <td ng-if="value == true" ng-repeat="(key, value) in tableColumns">{{issue[key]}}</td>
- </tr>
- </tbody>
- </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement