AG-Grid: Cannot update field in Grid as it is read only
问题 I am trying to update a field in ag-grid and it keeps coming back with ERROR TypeError: Cannot assign to read only property 'quantity' of object '[object Object]'. It allows me to edit the cell but when i try to update it comes up with this error. I am using an observable from an ngrx store to populate the rowData as below: this.order$.subscribe(order => { this.order = { ...order, products: [...order.products] }; }); I have checked the above and I can update this object by saying this.orders