mirror of https://github.com/Squidex/squidex.git
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
390 B
9 lines
390 B
<div 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>
|
|
</div>
|