]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/share/item-location-select/item-location-select.component.html
LP1929741 ACQ Selection List & PO Angluar Port
[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   [asyncDataSource]="loadAsync ? getLocationsAsyncHandler : null"
11   [domId]="domId"
12   [startId]="startId"
13   [disabled]="disabled"
14   [readOnly]="readOnly"
15   [displayTemplate]="displayTemplate"
16   (onChange)="cboxChanged($event)"
17   [required]="required"
18   (blur)="propagateTouch()"
19   placeholder="Shelving Location..."
20   i18n-placeholder>
21 </eg-combobox>