roweditor.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <div class="gf-box-header">
  2. <div class="gf-box-title">
  3. <i class="fa fa-th-list"></i>
  4. Row settings
  5. </div>
  6. <button class="gf-box-header-close-btn" ng-click="dismiss();">
  7. <i class="fa fa-remove"></i>
  8. </button>
  9. </div>
  10. <div class="gf-box-body">
  11. <div class="row">
  12. <div class="col-md-8">
  13. <div class="page-heading">
  14. <h5>Row details</h5>
  15. </div>
  16. <div class="gf-form-group">
  17. <div class="gf-form-inline">
  18. <div class="gf-form">
  19. <span class="gf-form-label width-6">Title</span>
  20. <input type="text" class="gf-form-input max-width-14" ng-model='row.title'></input>
  21. </div>
  22. <div class="gf-form">
  23. <span class="gf-form-label width-6">Height</span>
  24. <input type="text" class="gf-form-input max-width-8" ng-model='row.height'></input>
  25. <editor-checkbox text="Show Title" model="row.showTitle"></editor-checkbox>
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. <div class="col-md-4">
  31. <div class="page-heading">
  32. <h5>Templating options</h5>
  33. </div>
  34. <div class="gf-form-group">
  35. <div class="gf-form">
  36. <span class="gf-form-label">Repeat Row</span>
  37. <div class="gf-form-select-wrapper max-width-10">
  38. <select class="gf-form-input" ng-model="row.repeat" ng-options="f.name as f.name for f in dashboard.templating.list">
  39. <option value=""></option>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. </div>