blob: 8e2361735b69170b5bdade5f543291a881385040 [file] [log] [blame]
<!-- settings partial HTML -->
<div id="ov-settings">
<div class="tabular-header">
<h2>Component Settings ({{tableData.length}} total)</h2>
<div class="ctrl-btns">
<div class="refresh" ng-class="{active: autoRefresh}"
icon icon-size="42" icon-id="refresh"
tooltip tt-msg="autoRefreshTip"
ng-click="toggleRefresh()"></div>
</div>
</div>
<div class="summary-list" onos-table-resize>
<div class="table-header" onos-sortable-header>
<table>
<tr>
<td colId="component" sortable col-width="260px">Component </td>
<td colId="prop" sortable col-width="260px">Property </td>
<td colId="type" sortable col-width="100px">Type </td>
<td colId="value" sortable col-width="100px">Value </td>
<td colId="desc">Description </td>
</tr>
</table>
</div>
<div class="table-body">
<table onos-flash-changes id-prop="id">
<tr ng-if="!tableData.length" class="no-data">
<td colspan="6">
{{annots.no_rows_msg}}
</td>
</tr>
<tr ng-repeat="prop in tableData track by $index"
ng-click="selectCallback($event, prop)"
ng-class="{selected: prop.id === selId}"
ng-repeat-complete row-id="{{prop.id}}">
<td>{{prop.component}}</td>
<td>{{prop.prop}}</td>
<td>{{prop.type}}</td>
<td ng-class="{notdef: prop.value !== prop.defValue}">
{{prop.value}}
</td>
<td>{{prop.desc}}</td>
</tr>
</table>
</div>
</div>
<settings-details-panel></settings-details-panel>
</div>