editor.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. <div class="row-fluid" ng-controller="parallelcoordinates">
  2. <div style="width:90%">
  3. <form class="input-append">
  4. <h6>Query</h6>
  5. <input type="text" style="width:90%" ng-model="panel.query">
  6. <button class="btn" ng-click="get_data();"><i class="icon-search"></i></button>
  7. </form>
  8. </div>
  9. </div>
  10. <div class="row-fluid">
  11. <div class="span4">
  12. <form class="input-append">
  13. <h6>Add field</h6>
  14. <input bs-typeahead="fields.list" type="text" class="input-small" ng-model='newfield'>
  15. <button class="btn" ng-click="toggle_field(newfield);newfield=''"><i class="icon-plus"></i></button>
  16. </form>
  17. </div>
  18. <div class="span8">
  19. <h6>Selected fields <small>Click to remove</small></h6>
  20. <span style="margin-left:3px" ng-click="toggle_field(field)" ng-repeat="field in $parent.panel.fields" class="label remove pointer">{{field}} </span>
  21. </div>
  22. </div>
  23. <h5>Panel Spy</h5>
  24. <div class="row-fluid">
  25. <div class="span2">
  26. <label class="small"> Spyable </label><input type="checkbox" ng-model="panel.spyable" ng-checked="panel.spyable">
  27. </div>
  28. <div class="span9 small">
  29. The panel spy shows 'behind the scenes' information about a panel. It can
  30. be accessed by clicking the <i class='icon-eye-open'></i> in the top right
  31. of the panel.
  32. </div>
  33. </div>