UNPKG

path-framework-weberm16

Version:
10 lines (9 loc) 472 B
<path-form-field-label [label]="field.name" [required]="field.required"></path-form-field-label> <div [class.col-md-4]="field.width == 1" [class.col-md-10]="field.width == 2"> <span *ngFor="let entry of field.entries"> <label class="control checkbox"> <input type="checkbox" [(ngModel)]="entry.selected" (ngModelChange)="field.doClick()"> <span class="checkbox-label"> {{entry.name}}</span> </label> </span> </div>