Angular forms NgModelGroup Directive Read Discuss Courses Practice Improve Improve Improve Like Article Like Save Article Save Report issue Report In this article, we are going to see what is NgModelGroup in Angular 10 and how to use it. The NgModelGroup is used to create a top-level form group Instance, and it binds the form to the given form value. Syntax: <div ngModelGroup="name"></div> NgModule: Module used by NgModelGroup is: FormsModule Selectors: [ngModelGroup] Approach: Create an Angular app to be use.d In app.component.ts make an object that contains value for the input. In app.component.html use ngModelGroup to get values. Serve the angular app using ng serve to see the output. Example: app.component.ts import { Component, Inject } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: [ './app.component.css' ] }) export class AppComponent { gfg:any; setValue() { this.gfg = {first: 'Geeky', email: 'abc@gfg.com'}; } } app.component.html <br> <form #f="ngForm"> <div ngModelGroup="gfg" #nameCtrl="ngModelGroup"> Name: <input name="first" [ngModel]="gfg.first" > Email: <input name="email" [ngModel]="gfg.email" > </div> </form> <br><br> <button (click)="setValue()">Set value</button> Output: Reference: https://angular.io/api/forms/NgModelGroup Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now! Last Updated : 04 Jul, 2021 Like Article Save Article Previous AngularJS ng-keyup Directive Next Tensorflow.js tf.layers.reshape() Function Please Login to comment...