query.editor.html 972 B

12345678910111213141516171819202122232425
  1. <query-editor-row query-ctrl="ctrl" class="generic-datasource-query-row" has-text-edit-mode="true">
  2. <div class="gf-form-inline">
  3. <div class="gf-form max-width-8">
  4. <select class="gf-form-input" ng-model="ctrl.target.type" ng-options="f as f for f in ['table', 'timeserie']"></select>
  5. </div>
  6. <div class="gf-form" ng-if="ctrl.target.rawQuery">
  7. <textarea class="gf-form-input" rows="5" ng-model="ctrl.target.target" spellcheck="false" ng-blur="ctrl.onChangeInternal()" />
  8. </div>
  9. <div ng-if="!ctrl.target.rawQuery">
  10. <div class="gf-form">
  11. <gf-form-dropdown model="ctrl.target.target"
  12. allow-custom="true"
  13. lookup-text="true"
  14. get-options="ctrl.getOptions($query)"
  15. on-change="ctrl.onChangeInternal()">
  16. </gf-form-dropdown>
  17. </div>
  18. </div>
  19. <div class="gf-form gf-form--grow">
  20. <div class="gf-form-label gf-form-label--grow"></div>
  21. </div>
  22. </div>
  23. </query-editor-row>