#angular
Вопрос:
Я сбрасываю свой дочерний компонент и вижу в группе форм, что все сброшено, но на странице даже после обновления значения остаются. почему? отец
@ViewChild(TreeDetailsInputFormComponent) child: TreeDetailsInputFormComponent; this.fg.controls.treeInfoModel.reset(); this.child.cancelTabChanges();
ребенок
cancelTabChanges() { this.inputFormGroup.reset(); this.inputFormGroup.updateValueAndValidity(); console.log("this.inputFormGroup", this.inputFormGroup); }