28 lines
670 B
HTML
28 lines
670 B
HTML
|
|
<div>
|
||
|
|
<input type="checkbox" />
|
||
|
|
<!-- toppingGroup -->
|
||
|
|
<ng-select
|
||
|
|
appendTo="body"
|
||
|
|
[clearable]="false"
|
||
|
|
[compareWith]="this.compareFunc"
|
||
|
|
formControlName="groupID"
|
||
|
|
>
|
||
|
|
<ng-option
|
||
|
|
*ngFor="let item of allToppingsDefinitions"
|
||
|
|
[value]="item.groupId.toString()"
|
||
|
|
>
|
||
|
|
<div>{{ item.name }} ({{ item.groupId }})</div>
|
||
|
|
</ng-option>
|
||
|
|
</ng-select>
|
||
|
|
<!-- defaultSelect -->
|
||
|
|
<ng-select
|
||
|
|
>
|
||
|
|
<!-- <ng-option
|
||
|
|
*ngFor="let item of getMembersByGroupId(getGroupIdByIndex(this.index))"
|
||
|
|
[value]="item.defaultId.toString()"
|
||
|
|
>
|
||
|
|
<div>{{ item.name }} ({{ item.defaultId }})</div>
|
||
|
|
</ng-option> -->
|
||
|
|
</ng-select>
|
||
|
|
</div>
|