config.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <table class="table table-bordered" style="width: auto;">
  2. <tr>
  3. <td>
  4. <label>Kunde:
  5. <select class="form-control" ng-model="current.kunde" ng-options="k for k in options.kunde" ng-change="data={}"></select>
  6. </label>
  7. </td>
  8. <td>
  9. <label>Datum:
  10. <select class="form-control" ng-model="current.datum" ng-options="dateFormat(v) for v in options.datum[current.kunde]" ng-change="refresh()"></select>
  11. </label>
  12. </td>
  13. <td>
  14. <label>Tabelle:
  15. <select class="form-control" ng-model="current.tabelle" ng-options="v for v in options.tabelle"></select>
  16. </label>
  17. </td>
  18. </tr>
  19. </table>
  20. <table class="table table-bordered table-condensed table-striped" style="width: auto;">
  21. <tr>
  22. <th></th>
  23. <th ng-repeat="(col, v) in domain[current.tabelle]">{{col}}</th>
  24. </tr>
  25. <tr>
  26. <td></td>
  27. <td ng-repeat="(col, dom) in domain[current.tabelle]">
  28. <div class="dropdown">
  29. <a class="btn dropdown-toggle" role="button" data-toggle="dropdown">{{filter[current.tabelle][col]||'alle'}}&nbsp;<b class="caret"></b></a>
  30. <ul class="dropdown-menu" role="menu">
  31. <li><a ng-click="filter[current.tabelle][col]=''">alle</a></li>
  32. <li class="divider"></li>
  33. <li ng-repeat="e in dom"><a ng-click="filter[current.tabelle][col]=e">{{e}}</a></li>
  34. </ul>
  35. </div>
  36. </td>
  37. </tr>
  38. <tr ng-repeat="row in data[current.tabelle] | filter: filter[current.tabelle] | limitTo: 200">
  39. <th>{{$index+1}}</th>
  40. <td ng-repeat="col in row">
  41. {{col}}
  42. </td>
  43. </tr>
  44. </table>