options.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <div class="dash-row-options">
  2. <div class="tabbed-view-header">
  3. <h2 class="tabbed-view-title">
  4. Row Options
  5. </h2>
  6. <button class="tabbed-view-close-btn" ng-click="ctrl.onClose()">
  7. <i class="fa fa-remove"></i>
  8. </button>
  9. </div>
  10. <br>
  11. <div class="gf-form-group">
  12. <div class="gf-form-inline">
  13. <div class="gf-form">
  14. <span class="gf-form-label width-6">Title</span>
  15. <input type="text" class="gf-form-input max-width-14" ng-model='ctrl.row.title'></input>
  16. </div>
  17. <div class="gf-form">
  18. <span class="gf-form-label width-6">Height</span>
  19. <input type="text" class="gf-form-input max-width-8" ng-model='ctrl.row.height'></input>
  20. </div>
  21. <gf-form-switch class="gf-form" label="Show Title" tooltip="Check to always show row title" checked="ctrl.row.showTitle">
  22. </gf-form-switch>
  23. </div>
  24. </div>
  25. <h5 class="section-heading">Row Templating</h5>
  26. <div class="gf-form-group">
  27. <div class="gf-form">
  28. <span class="gf-form-label">Repeat Row</span>
  29. <div class="gf-form-select-wrapper max-width-10">
  30. <select class="gf-form-input" ng-model="row.repeat" ng-options="f.name as f.name for f in dashboard.templating.list">
  31. <option value=""></option>
  32. </div>
  33. </div>
  34. </div>
  35. </div>