matrix-dimension/web/app/elements/field/field.component.html
2021-12-09 14:35:28 -07:00

23 lines
658 B
HTML

<div class="field">
<input
*ngIf="!asSelect"
[type]="type"
[placeholder]="placeholder"
[(ngModel)]="value"
(ngModelChange)="onValueChange()"
[id]="id"
[disabled]="disabled"
[maxlength]="maxlength"
/>
<select
*ngIf="asSelect"
[(ngModel)]="value"
(ngModelChange)="onValueChange()"
[id]="id"
[disabled]="disabled"
>
<option *ngFor="let opt of options trackById" [ngValue]="opt.key">{{opt.value ?? opt.key}}</option>
</select>
<label [htmlFor]="id">{{label}}</label>
</div>