99b323357226f2dfe70a66bed00c91e2bbd1691e
[dlux.git] / modules / yangman-resources / src / main / resources / yangman / views / rightpanel / form / config / types / enumeration.tpl.html
1 <md-input-container ng-controller="TypeEnumCtrl as yangTypeEnum">
2     <md-select ng-model="type.selEnum" md-on-close="yangTypeEnum.valueChanged()" ng-disabled="{{ yangOutput.notEditable }}">
3         <md-option ng-repeat="enum in type.getChildren('enum')" ng-value="enum">
4             {{enum.label}}
5         </md-option>
6     </md-select>
7 </md-input-container>