options.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <div class="dash-row-options">
  2. <div class="gf-form section">
  3. <div class="gf-form-inline">
  4. <div class="gf-form">
  5. <span class="gf-form-label width-6">Row Title</span>
  6. <input type="text" class="gf-form-input max-width-14" ng-model='ctrl.row.title'></input>
  7. </div>
  8. <div class="gf-form">
  9. <label class="gf-form-label width-6">Size</label>
  10. <div class="gf-form-select-wrapper">
  11. <select class="input-small gf-form-input" ng-model="ctrl.row.titleSize" ng-options="f for f in ctrl.fontSizes"></select>
  12. </div>
  13. </div>
  14. <gf-form-switch class="gf-form" label="Show" checked="ctrl.row.showTitle">
  15. </gf-form-switch>
  16. </div>
  17. <div class="gf-form-inline">
  18. <div class="gf-form">
  19. <span class="gf-form-label width-6">Height</span>
  20. <input type="text" class="gf-form-input max-width-14" ng-model='ctrl.row.height'></input>
  21. </div>
  22. </div>
  23. </div>
  24. <div class="gf-form section">
  25. <div class="gf-form">
  26. <span class="gf-form-label">Repeat Row</span>
  27. <dash-repeat-option model="ctrl.row"></dash-repeat-option>
  28. </div>
  29. </div>
  30. <div class="clearfix"></div>
  31. <div class="pull-right">
  32. <button class="btn btn-danger btn-small" ng-click="ctrl.removeRow()">
  33. <i class="fa fa-trash"></i>
  34. Delete row
  35. </button>
  36. </div>
  37. <div class="clearfix"></div>
  38. </div>