Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.38 KB | None | 0 0
  1. <div class="scrollableUpperDiv">
  2.                             <table id="nodes-table" class="table table-hover table-condensed">
  3.                             <tbody data-ng-repeat="node_item in filteredNodes">
  4.                                 <tr ng-class="{true:'selectedItem', false:''}[node_item.id == lastSelectedNodeId]" data-ng-click="toggleNode(node_item)">
  5.                                     <td style='width: 250px;' class="pointer">{{ node_item.name }}</td>
  6.                                     <td style='width: 250px;'>{{ node_item.puppetClassString }}</td>
  7.                                     <td style='width: 250px;'>{{ node_item.environment }}</td>
  8.                                     <td style='width: 300px;'>{{ nodeParents(node_item) }}</td>
  9.                                     <td>{{ nodeChildren(node_item.children) }}</td>
  10.                                     <td><span class="pull-right"><a id="deletenodelink" data-ng-click="deleteMainNode(node_item)"><i class="pointer icon-trash"></i></a></span></td>
  11.                                 </tr>
  12.                                 </tbody>
  13.                             </table>
  14.                             <div>
  15.                                 <pagination total-items="totalItems()" ng-model="currentPage" ng-change="onNodePageSelect(currentPage)" items-per-page="currentNumberOfPages.number"></pagination>
  16.                             </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement