Today, We want to share with you Angular 9/8 Get Selected DropDown Value on Form Submit.In this post we will show you Angular 9/8 Select Dropdown Example, hear for Angular 8/9 Select Dropdown Tutorial with Reactive Forms we will give you demo and example for implement.In this post, we will learn about Bind Select DropDown List in Angular 8 with an example.
Angular 9/8 Get Selected DropDown Value on Form Submit
Contents
There are the Following The simple About angular 6 reactive forms select option Full Information With Example and source code.
As I will cover this Post with live Working example to develop Angular 7|8|9 Select Dropdown Examples with Reactive Forms, so the angular 8 select required validation is used for this example is following below.
Phase 1: Import FormsModule
src/app/app.module.ts
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, FormsModule, ReactiveFormsModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }
Phase 2: Form with ngModel
src/app/app.component.html
<div class="bdy-cart container dsp"> <h1>Angular Select Dropdown Example - pakainfo.com</h1> <form [formGroup]="form" (ngSubmit)="submit()"> <div class="corona form-group lg10"> <label for="blogspot">Blogspot:</label> <select formControlName="blogspot" class="form-control"> <option disabled>Select Blogspot</option> <option>Choose Blogspot</option> <option *ngFor="let web of blogspotList">{{web}}</option> </select> <div *ngIf="f.blogspot.touched && f.blogspot.invalid" class="alert alert-danger"> <div *ngIf="f.blogspot.errors.required">Name is required.</div> </div> </div> <button class="btn btn-primary" type="submit" [disabled]="!form.valid">Submit</button> </form> </div>
Phase 3: updated Ts File
src/app/app.component.ts
import { Component } from '@angular/core'; import { FormGroup, FormControl, Validators} from '@angular/forms'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { blogspotList: any = ['pakainfo.com', 'ministackoverflow.com', 'infinityknow.com'] form = new FormGroup({ blogspot: new FormControl('', Validators.required) }); get f(){ return this.form.controls; } submit(){ console.log(this.form.value); } }
Web Programming Tutorials Example with Demo
Read :
Summary
You can also read about AngularJS, ASP.NET, VueJs, PHP.
I hope you get an idea about angular 8 dropdown list example.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, donβt forget to share.
I am Jaydeep Gondaliya , a software engineer, the founder and the person running Pakainfo. I’m a full-stack developer, entrepreneur and owner of Pakainfo.com. I live in India and I love to write tutorials and tips that can help to other artisan, a Passionate Blogger, who love to share the informative content on PHP, JavaScript, jQuery, Laravel, CodeIgniter, VueJS, AngularJS and Bootstrap from the early stage.