editor.html 1.1 KB

1234567891011121314151617
  1. <div>
  2. <div class="row-fluid">
  3. <div class="span2">
  4. <label class="small">Multi-query</label><input type="checkbox" ng-change="set_multi(panel.multi) "ng-model="panel.multi" ng-checked="panel.multi">
  5. </div>
  6. <div class="span3" ng-show="panel.multi">
  7. <label class="small">Arrangement</label>
  8. <select class="input-small" ng-model="panel.multi_arrange" ng-options="f for f in ['vertical','horizontal']"></select>
  9. </div>
  10. </div>
  11. <div class="row-fluid" ng-show="panel.multi">
  12. <div class="span12">
  13. <h5>A note on multi query panels</h5>
  14. <p>You turned on multi panel support: <i>cool</i>. Be aware that not all panels support display of multiple queries. Panels that don't support receiving several queries at one time will (should) display the results of the <strong>first query in the list</strong>. Further, some panels might not support receiving multiple queries in all modes. For example, the <strong>pie panel</strong> supports multiple queries only in <strong>query mode</strong>. In its other modes it will display the results of the first query in the list</p>
  15. </div>
  16. </div>
  17. </div>