Open In App

Angular forms FormControlName Directive

In this article, we are going to see what is FormControlName in Angular 10 and how to use it.

FormControlName is used to sync a FormControl in an existing FormGroup to a form control element by name.



Syntax:

<form [FormControlName] ="name">

Exported from:



 

Selectors:

Approach: 

Example 1:




import { Component, Inject } from '@angular/core';
  import { FormGroup, FormControl, FormArray } from '@angular/forms'
  @Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: [ './app.component.css' ]
  })
  export class AppComponent  {
    form = new FormGroup({
        name: new FormControl(),
        rollno: new FormControl() 
    });
  
    get name(): any {
      return this.form.get('name');
    }
    get rollno(): any {
      return this.form.get('rollno');
    }
    
    onSubmit(): void {
      console.log(this.form.value); 
    }
    
  }




<br>
<form [formGroup]="form" (ngSubmit)="onSubmit()">
    <input formControlName="name" placeholder="Name">
    <input formControlName="rollno" placeholder="RollNo">
  <br>
  <button type='submit'>Submit</button>
  <br>
  <br>
</form>

Output:

Reference: https://angular.io/api/forms/FormControlName


Article Tags :