roweditor.html 918 B

123456789101112131415161718192021222324252627282930
  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="editor-option">
  17. <label class="small">Title</label><input type="text" class="input-xlarge" ng-model='row.title'></input>
  18. </div>
  19. <div class="editor-option">
  20. <label class="small">Height</label><input type="text" class="input-mini" ng-model='row.height'></input>
  21. </div>
  22. <editor-opt-bool text="Editable" model="row.editable"></editor-opt-bool>
  23. <editor-opt-bool text="Show title" model="row.showTitle"></editor-opt-bool>
  24. </div>
  25. </div>