NINS_CODE/bahmniapps/common/concept-set/views/templates/dataField.html
travelershot 70dda814aa codepush
2024-12-12 22:37:39 +06:00

18 lines
788 B
HTML

<div>
<div class="field-attribute">
<label>{{label}}</label><span class="label-add-on" ng-show="unitsForData">({{unitsForData}})</span>
</div>
<div ng-switch on="displayType" class="field-value">
<span class="value-text-only" ng-switch-when="readonly">{{value}}</span>
<input type="text" ng-switch-default ng-model="value">
<!-- <div ng-switch-default>
<div ng-switch on="selectOptions.length">
<input type="text" ng-switch-when="0" ng-model="fieldValue"></input>
<select class="" ng-switch-default ng-model="fieldValue"
ng-options="option.uuid as option.display for option in selectOptions">
</select>
</div>
</div>-->
</div>
</div>