ferhado
Results
2
comments of
ferhado
This works using [ngModelGroup]="i" in loop like: ``` ``` Here is a working example: https://stackblitz.com/edit/angular-ngmodelgroup-array
Hi @crisbeto, In theory, this approach works: ```typescript const dialogRef = this.dialog.open(MyDialogComponent); dialogRef.componentInstance.name = 'John'; dialogRef.componentInstance.age = 30; ``` However, this method is tricky and not ideal for practical use....