I have one reactive form and i take one array inside form my implementation is like
testForm:FormGroup;
fb is instance of FormBuilder;
this.testForm=this.fb.group({
testarray:this.fb.Array([
note:['']
])
})
I am using above array on my html to display note. Here functionality is like user can add multiple note.
I want to disable and enable note of array when i post not at that time want to identify which not is posted and need to disable that note.
Here my question is how can we disable reactive form array property using angular 2 typescript?
Please help me Thanks