module.html 745 B

1234567891011121314151617
  1. <kibana-panel ng-controller='table'>
  2. <div style="height:{{row.height}};overflow-y:auto;overflow-x:auto">
  3. <table class="table table-condensed table-striped" ng-style="panel.style">
  4. <thead>
  5. <th style="white-space:nowrap" ng-repeat="field in panel.fields">
  6. <span class="pointer" ng-click="set_sort(field)">
  7. {{field}}
  8. <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>
  9. </span>
  10. </th>
  11. </thead>
  12. <tr ng-repeat="row in data">
  13. <td ng-repeat="field in panel.fields">{{row['_source'][field]}}</td>
  14. </tr>
  15. </table>
  16. </div>
  17. </kibana-panel>