Guest User

Untitled

a guest
Jan 17th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. initGroup() {
  2. let rows = this.addForm.get('rows') as FormArray;
  3. rows.push(this.fb.group({
  4. ingredient_id: ['', Validators.required],
  5. unit_price: new FormControl({ value: '', disabled: true }, Validators.required),
  6. quantity: ['', Validators.required],
  7. }))
  8. }
Add Comment
Please, Sign In to add comment