You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.4 KiB
44 lines
1.4 KiB
5 years ago
|
<div class="gf-form-inline">
|
||
|
<div class="gf-form">
|
||
|
<label class="gf-form-label query-keyword width-8"> Name </label>
|
||
|
<input
|
||
|
type="text" class="gf-form-input width-15"
|
||
|
ng-model="ctrl.analyticsController.newAnalyticUnit.name"
|
||
|
>
|
||
|
</div>
|
||
|
|
||
|
<div class="gf-form gf-form--grow">
|
||
|
<div class="gf-form-label gf-form-label--grow"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="gf-form-inline">
|
||
|
<div class="gf-form">
|
||
|
<label class="gf-form-label query-keyword width-8"> Detector Type </label>
|
||
|
<div class="gf-form-select-wrapper">
|
||
|
<select class="gf-form-input width-8"
|
||
|
ng-model="ctrl.analyticsController.newAnalyticUnit.detectorType"
|
||
|
ng-options="analyticUnitDetectorType for analyticUnitDetectorType in ctrl.analyticUnitDetectorTypes"
|
||
|
ng-change="ctrl.analyticsController.onAnalyticUnitDetectorChange(ctrl.analyticUnitTypes);"
|
||
|
/>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="gf-form">
|
||
|
<label class="gf-form-label query-keyword width-8"> Type </label>
|
||
|
<div class="gf-form-select-wrapper">
|
||
|
<select class="gf-form-input width-9"
|
||
|
ng-model="ctrl.analyticsController.newAnalyticUnit.type"
|
||
|
ng-options="
|
||
|
type.value as type.name
|
||
|
for type in ctrl.analyticUnitTypes[ctrl.analyticsController.newAnalyticUnit.detectorType]
|
||
|
"
|
||
|
/>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="gf-form gf-form--grow">
|
||
|
<div class="gf-form-label gf-form-label--grow"></div>
|
||
|
</div>
|
||
|
</div>
|