Open In App

Angular forms FormControlDirective

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

The FormControlDirective is used to synchronize a standalone FormControl instance to a form control element



<form [FormControlDirective] ="name">

Exported from:

Selectors:



 

Approach: 

Example:




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  {
    geek: FormControl = new FormControl('');
  }




<br>
<input [formControl]="geek">
  
  
<p>Value: {{ geek.value }}</p>

Output:

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

Article Tags :