zazu-app-table
Version:
A simple table app for zazu dashboard engine.
22 lines (18 loc) • 669 B
HTML
<div ng-if="showTitleBar == true" class="app-header">
{{ tile.name }}
</div>
<div class="app-content">
<table class="table">
<thead ng-if="data.header && data.header.length > 0">
<tr>
<th ng-repeat="header in data.header">{{ header }}</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="row in data.rows">
<th class="row" ng-if="$first && firstColumnContainHeader" ng-repeat="col in row">{{ col }}</th>
<td class="row" ng-if="(!$first && firstColumnContainHeader) || !firstColumnContainHeader" ng-repeat="col in row">{{ col }}</td>
</tr>
</tbody>
</table>
</div>