module.html 532 B

123456789
  1. <kibana-panel ng-controller='stringquery'>
  2. <form class="input-append" style="margin-bottom:0px; width:100%; white-space:nowrap;">
  3. <label><small>{{panel.label}}</small></label>
  4. <input type="text" ng-model="panel.query" style="width:85%">
  5. <button type="submit" class="btn btn-info" ng-click="send_query(panel.query)"><i class="icon-search"></i></button>
  6. <button type="submit" class="btn btn-danger" ng-click="panel.query='';send_query(panel.query)"><i class="icon-ban-circle"></i></button>
  7. </form>
  8. </kibana-panel>