argos/dmp-admin/src/app/components/combobox/combobox-component.html

16 lines
710 B
HTML
Raw Normal View History

<div class="form-group col-md-12">
<label>Type of Combobox</label>
2017-12-11 13:02:10 +01:00
<select class="form-control" [(ngModel)]="type" (change)= "onchangeCombo($event)">
<option *ngFor="let option of options" [value]="option.value">{{option.value}}</option>
</select>
2017-12-11 13:02:10 +01:00
<div class="form-row" [ngSwitch]="type">
<div *ngSwitchCase="'autocomplete'">
<autocomplete-component [form]="form" [dataModel]="dataModel"></autocomplete-component>
</div>
</div>
2017-12-11 13:02:10 +01:00
<div class="form-row" [ngSwitch]="type">
<div *ngSwitchCase="'wordlist'">
<wordlist-component [form]="form" [dataModel]="dataModel"></wordlist-component>
</div>
</div>
</div>