3 <div class="tabular-header">
4 <h2>Items ({{tableData.length}} total)</h2>
5 <div class="ctrl-btns">
6 <div class="refresh" ng-class="{active: autoRefresh}"
7 icon icon-id="refresh" icon-size="36"
8 tooltip tt-msg="autoRefreshTip"
9 ng-click="toggleRefresh()"></div>
13 <div class="summary-list" onos-table-resize>
15 <div class="table-header" onos-sortable-header>
18 <td colId="id" sortable>Item ID </td>
19 <td colId="label" sortable>Label </td>
20 <td colId="code" sortable>Code </td>
25 <div class="table-body">
27 <tr ng-if="!tableData.length" class="no-data">
33 <tr ng-repeat="item in tableData track by $index"
34 ng-click="selectCallback($event, item)"
35 ng-class="{selected: item.id === selId}">
37 <td>{{item.label}}</td>
38 <td>{{item.code}}</td>
45 <item-details-panel></item-details-panel>