Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

369
Views
Unable to push data to mat-table which is in FormArray and that form is in loop So I have multiple forms each form has one mat-table

when I tried to push data to form its not updating to that form Array ,its always updating in first form Array,

export class Sample {

  assetsAndGiftsForm: FormGroup;
  constructor(private _fb: FormBuilder) {
    
  }
  public initAssetsForm() {
    this.assetsAndGiftsForm = this._fb.group({
      borrowers: this._fb.array([this.sample()]),
    })
  }
 
  

  public sample() {
    let reo:ReoDto[]=[]
    return this._fb.group({
      assets: this._fb.array([]),
      gifts: this._fb.array([]),
      reo: [[]]
    })
  }
}

template

 <table mat-table #matTable [dataSource]="this.assetsAndGiftsForm.value.borrowers[borrowerIndex].reo">

after adding data to form I tries to push data to Mat-table but its updating in first table only

     @ViewChild(MatTable) matTable: MatTable<any>;
  onSaveReo() {
    let control = this.getBorrowerControl.at(this.curreentBorrowerIndex.value).get('reo') as FormArray;
    control.value.push(this.reoForm.value);
    
    this.matTable.dataSource = this.getBorrowerControl.at(this.curreentBorrowerIndex.value).get('reo').value;
    // @error :: after adding new 'reo' into  any one of borrowers, its pushing to  only first table  ,
    //datasurce is not varying 
    this.assetsAndGiftsForm.updateValueAndValidity()
    this.matTable.renderRows();

    this.addPropertyPopupClose();
  }
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!