roweditor.html 1.3 KB

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