Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

9 lines
392 B

<span class="form-check" *ngFor="let value of values">
<input type="checkbox" class="form-check-input" id="{{controlId}}{{value}}"
(blur)="callTouched()"
(change)="check($event.target.checked, value)"
[checked]="isChecked(value)"
[disabled]="snapshot.isDisabled">
<label class="form-check-label" for="{{controlId}}{{value}}">{{value}}</label>
</span>