Skip to content

Instantly share code, notes, and snippets.

@stevermeister
Created June 28, 2017 12:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevermeister/15dac6ddd7d924d0f525fa78792901fb to your computer and use it in GitHub Desktop.
Save stevermeister/15dac6ddd7d924d0f525fa78792901fb to your computer and use it in GitHub Desktop.
<form [formGroup]="participantsForm">
<ul formArrayName="users">
<li *ngFor="let item of participantsForm.controls.users.controls; let i = index">
<input type="text" formControlName="{{i}}">
</li>
</ul>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment