editor.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <div ng-controller="hits">
  2. <div class="row-fluid">
  3. <div class="span3"><h6>Font Size</h6>
  4. <select class="input-small" ng-model="panel.style['font-size']" ng-options="f for f in ['7pt','8pt','9pt','10pt','12pt','14pt','16pt','18pt','20pt','24pt','28pt','32pt','36pt','42pt','48pt','52pt','60pt','72pt']"></select></span>
  5. </div>
  6. <div class="span2">
  7. <label class="small">Aggregate Queries</label><input type="checkbox" ng-model="panel.aggregate" ng-checked="panel.aggregate">
  8. </div>
  9. <div class="span3" ng-show="!panel.aggregate"><h6>Arrangement</h6>
  10. <select class="input-medium" ng-model="panel.arrangement" ng-options="f for f in ['horizontal','vertical']"></select></span>
  11. </div>
  12. </div>
  13. <div class="row-fluid">
  14. <div class="span3">
  15. <form style="margin-bottom: 0px">
  16. <h6>Label</h6>
  17. <input type="text" placeholder="New Label" style="width:70%" ng-model="newlabel">
  18. </form>
  19. </div>
  20. <div class="span8">
  21. <form class="input-append" style="margin-bottom: 0px">
  22. <h6>Query</h6>
  23. <input type="text" placeholder="New Query" style="width:80%" ng-model="newquery">
  24. <button class="btn" ng-click="add_query(newlabel,newquery);newlabel='';newquery=''"><i class="icon-plus"></i></button>
  25. </form>
  26. </div>
  27. <div class="span1">
  28. </div>
  29. </div>
  30. <div class="row-fluid" ng-repeat="q in panel.query">
  31. <div class="span3">
  32. <form style="margin-bottom: 0px">
  33. <input type="text" style="width:70%" ng-model="q.label">
  34. </form>
  35. </div>
  36. <div class="span8">
  37. <form class="input-append" style="margin-bottom: 0px">
  38. <input type="text" style="width:80%" ng-model="q.query">
  39. <button class="btn" ng-click="get_data()"><i class="icon-search"></i></button>
  40. </form>
  41. </div>
  42. <div class="span1">
  43. <i class="icon-remove pointer" ng-click="remove_query(q)"></i>
  44. </div>
  45. </div>
  46. </div>