]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/share/item-location-select/item-location-select.component.html
LP1888723 Angular Holdings Maintenance / Item Attributes Editor
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / share / item-location-select / item-location-select.component.html
1
2 <ng-template #displayTemplate let-r="result" i18n>
3   {{r.label}} <ng-container *ngIf="r.userdata">
4     ({{orgName(r.userdata.owning_lib())}})</ng-container>
5 </ng-template>
6
7 <eg-string #unsetString text="<Unset>" i18n-text></eg-string>
8
9 <eg-combobox #comboBox
10   [domId]="domId"
11   [startId]="startId"
12   [displayTemplate]="displayTemplate"
13   (onChange)="cboxChanged($event)"
14   [required]="required"
15   (blur)="propagateTouch()"
16   placeholder="Shelving Location..."
17   i18n-placeholder>
18 </eg-combobox>