StackBlitz (runnable example)
Angular HTML template for Component
<form [formGroup]="myForm">
<mat-form-field>
<input matInput placeholder="name" formControlName="name">
</mat-form-field>
<mat-form-field>
<mat-list formControlName="foldersList">
<mat-list-item *ngFor="let folder of folders"><h4 mat-line>{{folder.name}}</h4></mat-list-item>
</mat-list>
</mat-form-field>
</form>
Angular TypeScript Component
export class MyComponent {
folders = [ { name: 'Photos', updated: new Date('1/1/16') } ];
myForm: FormGroup = this.fb.group({
name: ['', Validators.required],
foldersList:
new FormControl([]),
// new FormArray([]),
// ['', Validators. Validators.required],
// this.fb.array([], [Validators.required]),
});
constructor(private fb: FormBuilder) {}
}
Errors
Error: No value accessor for form control with name: 'foldersList'
Error: mat-form-field must contain a MatFormFieldControl.
The
mat-list
andmat-selection-list
components do not implement theMatFormFieldControl
interface. Which is why they can not be used inside amat-form-field
.Here's a working fork of the above example: https://stackblitz.com/edit/angular-xijtrv-yzpsmj
Just replaced
mat-list
withmat-selection-list
and removed themat-form-field
that wrapped it.