Hie...I am having a child component which has form.I am trying to inject the form values of child into parent. I am getting the control group but i am not able to get the values.I have made a plunker demo here http://plnkr.co/edit/I5feR6NHdQuTT7rJrVYA?p=preview
onSubmit(value) {
console.log(this.app.addressForm.value);
console.log('you submitted value: ', value);
}
This is how i am getting the value of child form i have mentioned the providers in Parent component...Somebody please tell me how to get the form values of child component when something is entered into it?