mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
17 lines
745 B
HTML
17 lines
745 B
HTML
<kibana-panel ng-controller='table'>
|
|
<div style="height:{{row.height}};overflow-y:auto;overflow-x:auto">
|
|
<table class="table table-condensed table-striped" ng-style="panel.style">
|
|
<thead>
|
|
<th style="white-space:nowrap" ng-repeat="field in panel.fields">
|
|
<span class="pointer" ng-click="set_sort(field)">
|
|
{{field}}
|
|
<i ng-show='field == panel.sort[0]' class="pointer" ng-class="{'icon-chevron-up': panel.sort[1] == 'asc','icon-chevron-down': panel.sort[1] == 'desc'}"></i>
|
|
</span>
|
|
</th>
|
|
</thead>
|
|
<tr ng-repeat="row in data">
|
|
<td ng-repeat="field in panel.fields">{{row['_source'][field]}}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</kibana-panel> |