So, I have an existing input fields for Passenger details(name, address, number, email). What I want to do is to add another passenger details input using an add button. So far here is my code for the button:
<div class="center">
<button
type="button"
class="next-button"
mat-flat-button
matTooltip="Add new passenger"
matTooltipClass="tooltipClass"
matTooltipPosition="below"
(click)=""
>
<mat-icon>add</mat-icon>
</button>
Create an array to store passenger details such as name, email, number, and address and iterate form using
*ngFor
.push new elements while clicking on the add button. Following are the steps.Iterate form based on
passengerForm
array.Create a function to push new passenger details.
For more : https://stackblitz.com/edit/angular-ivy-kry5ap?file=src%2Fapp%2Fapp.component.html