My application is Angular 10 and my forms are Reactive I implemented checkbox array in my application it does not pass the values. when I check the checkboxes and submit my form it does not pass values of checked days.
my component.ts
this.holidayForm= this._formBuilder.group({
RepeatTypeID: ['', null],
SelectedWeekDays: new FormArray([]),
});
my component html
<div *ngFor="let wdItems of WeekDays; let i=index">
<mat-checkbox formArrayName="SelectedWeekDays" [value]="wdItems.Weekdayid" >{{wdItems.Weekdayname}}</mat-checkbox>
</div>