Forma en forma. ¿Puede haber herencia de controles de formulario?
Tengo dos componentes: ParentComponent y ChildComponent:
parent.component.ts
<form #form="ngForm" (ngSubmit)="onSubmit(form)" novalidate>
<input type="text" name="firstControl" [(ngModel)]="firstControl" />
<input type="text" name="secondControl" [(ngModel)]="secondControl" />
<child-component>
</form>
{{form.value | json}}
child.component.ts
<input type="text" name="thirdControl" [(ngModel)]="thirdControl" />
<input type="text" name="fourthControl" [(ngModel)]="fourthControl" />
Ahora,{{form.value | json}}
devoluciones{ "firstControl": "", "secondControl": "" }
Y está claro. Mi pregunta es: ¿Hay alguna manera de formar heredar controles de formulario del componente hijo? ¿Cuál es la forma correcta de obtener{ "firstControl": "", "secondControl": "", "thirdControl": "", "fourthControl": "" }
para ParentComponent? ¿Es posible?