Yangman - bugfixes and improvements
[dlux.git] / modules / yangman-resources / src / main / resources / yangman / views / rightpanel / form / config / types / enumeration.tpl.html
1 <md-input-container ng-controller="YMTypeEnumCtrl as yangTypeEnum">
2     <md-select ng-model="type.selEnum" md-on-close="yangTypeEnum.valueChanged()" ng-readonly="{{ 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>