Created
September 26, 2019 04:31
-
-
Save mdmoin7/55221bd3dabddeced27b7436206f8229 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- TEMPLATE FORMS --> | |
<input type="text" name="name" ngModel required #nameRef="ngModel" /> | |
<app-show-errors [ctrl]="nameRef"></app-show-errors> | |
<!-- REACTIVE FORMS --> | |
<input type="text" formControlName="mycontrol"/> | |
<app-show-errors [ctrl]="formGroupObj.get('mycontrol')"></app-show-errors> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment