I am using angular reactive forms and I have form structure like below.
{
"name": '',
"params": {}
}
I want to add dynamic properties(form controls) inside params formGroup. Below is the code I used but it's giving empty controls
object.
ts file
exercise = {
data:[
{param: "Reps"},
{param: "Tempo"}
],
};
{
this.exerciseForm = this.formBuilder.group({
name: ['', [Validators.required],
params: this.formBuilder.group({})
});
}
get getAllParams(){
return this.exerciseForm.get('params') as FormGroup;
}
addNewParam(){
this.getAllParams[param] = this.formBuilder.control('');
}
template file
<div formGroupName="params" *ngFor="let param of exercise.data;">
<input type="text" [formControlName]="param.param" />
</div>
Can anyone please help me to create the same structure?
this.exerciseForm.addControl('temp',new FormControl(''))
– Eliseo