Skip to content

Instantly share code, notes, and snippets.

@mdmoin7
Created September 26, 2019 04:31
Show Gist options
  • Save mdmoin7/55221bd3dabddeced27b7436206f8229 to your computer and use it in GitHub Desktop.
Save mdmoin7/55221bd3dabddeced27b7436206f8229 to your computer and use it in GitHub Desktop.
<!-- 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