0
Using relative forms at angular 4, I have a problem defining a value for the array. How to set its value ?
marketStructures: this.formBuilder.group({
include: this.formBuilder.group({
departments: this.formBuilder.array([ this.createItem() ])
})
})
createItem(): FormGroup {
return this.formBuilder.group({
code: '',
});
}
this.formulario.patchValue({
'departments': { code: '01' }
})