mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
71 lines
1.9 KiB
HTML
71 lines
1.9 KiB
HTML
<div class="editor-row">
|
|
<div class="tight-form-section">
|
|
<h5>Data</h5>
|
|
<div class="tight-form">
|
|
<ul class="tight-form-list">
|
|
<li class="tight-form-item" style="width: 170px">
|
|
To Table Transform
|
|
</li>
|
|
<li>
|
|
<select class="input-xlarge tight-form-input"
|
|
ng-model="panel.transform"
|
|
ng-options="k as v.description for (k, v) in transformers"
|
|
ng-change="render()"></select>
|
|
</li>
|
|
</ul>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="editor-row">
|
|
<div class="tight-form-section">
|
|
<h5>Table Display</h5>
|
|
<div class="tight-form">
|
|
<ul class="tight-form-list">
|
|
<li class="tight-form-item">
|
|
Pagination (Page size)
|
|
</li>
|
|
<li>
|
|
<input type="text" class="input-small tight-form-input" placeholder="50"
|
|
empty-to-null ng-model="panel.pageSize" ng-change="render()" ng-model-onblur>
|
|
</li>
|
|
</ul>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="editor-row">
|
|
<div class="tight-form-section">
|
|
<h5>Column Styles</h5>
|
|
|
|
<div class="tight-form-container">
|
|
<div class="tight-form" ng-repeat="column panel.columns">
|
|
<ul class="tight-form-list">
|
|
<li class="tight-form-item">
|
|
<i class="fa fa-remove pointer" ng-click="removeSeriesOverride(override)"></i>
|
|
</li>
|
|
|
|
<li class="tight-form-item">
|
|
alias or regex
|
|
</li>
|
|
|
|
<li>
|
|
<input type="text" ng-model="override.alias" bs-typeahead="getColumnNames" ng-blur="render()" data-min-length=0 data-items=100 class="input-medium tight-form-input" >
|
|
</li>
|
|
|
|
<li class="dropdown" dropdown-typeahead="overrideMenu" dropdown-typeahead-on-select="setOverride($item, $subItem)">
|
|
</li>
|
|
</ul>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<button class="btn btn-inverse" style="margin-top: 20px" ng-click="addSeriesOverride()">
|
|
Add column display rule
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|