roweditor.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. <div ng-model="editor.index" bs-tabs style="text-transform:capitalize;">
  7. <div ng-repeat="tab in ['General']" data-title="{{tab}}">
  8. </div>
  9. </div>
  10. <button class="gf-box-header-close-btn" ng-click="dismiss();">
  11. <i class="fa fa-remove"></i>
  12. </button>
  13. </div>
  14. <div class="gf-box-body">
  15. <div class="editor-row" ng-if="editor.index == 0">
  16. <div class="section">
  17. <h5>Row details</h5>
  18. <div class="editor-option">
  19. <label class="small">Title</label><input type="text" class="input-medium" ng-model='row.title'></input>
  20. </div>
  21. <div class="editor-option">
  22. <label class="small">Height</label><input type="text" class="input-mini" ng-model='row.height'></input>
  23. </div>
  24. <editor-opt-bool text="Editable" model="row.editable"></editor-opt-bool>
  25. <editor-opt-bool text="Show title" model="row.showTitle"></editor-opt-bool>
  26. </div>
  27. <div class="section">
  28. <h5>Templating options</h5>
  29. <div class="editor-option">
  30. <label class="small">Repeat row</label>
  31. <input type="text" class="input-medium" ng-model='row.repeat'></input>
  32. </div>
  33. </div>
  34. </div>
  35. </div>