![angular.js](https://habrastorage.org/r/w120/webt/5a/6c/2a/5a6c2a56763b9761969772.png)
Angular
- 1 ответ
- 0 вопросов
1
Вклад в тег
initItemRows() {
return new FormGroup({
name: new FormControl('Test ticket name'),
description: new FormControl('Test description'),
full_price: new FormControl(100),
booking: new FormControl()
});
}
addNewRow() {
const control = <FormArray>this.invoiceForm.get('itemRows');
control.push(this.initItemRows());
}