I am working on a scenario where I have a Parent Component and a Child Component containing a Formbuilder and a ZipCode textbox.
Is there a way to notify the Parent Component when the user clicks out of the Child Component Textbox? I need to trigger some business logic after the user interacts with the textbox. Currently, the textbox is using a Material Angular wrapper.
The Child Component includes a Formbuilder with multiple textboxes, as shown below:
this.editAddressForm = this.formBuilder.group({
'city': [null, [Validators.maxLength(50)]],
'zipCode': [null, [Validators.maxLength(10)]],
<app-input-textbox class="zipcodeclass" div="zipcode" formControlName="zipCode">