Better Programming

Advice for programmers.

Follow publication

Angular

Introduction to Angular Template-Driven Forms

Lo Zarantonello
Better Programming
Published in
8 min readJun 15, 2022

Forms with three input elements and a select.
This is the form you will build. Enough to cover the basics.

Overview of Template-Driven Approach

FormsModule & Two Directives

import { FormsModule } from '@angular/forms';
imports: [BrowserModule, FormsModule],

Building a Form Element

A Generic Form Element

Generic form element in Angular template-driven forms
import { Component, OnInit } from '@angular/core';@Component({...})
export class TemplateFormComponent {
email: string | undefined;}

Does it mean that our element is not a form?

From One Element To A Form

Angular Template-driven form
<form (ngSubmit)="onSubmit()">

Angular Prevents Native DOM Validation

ngNativeValidate: browser’s native validation

<form (ngSubmit)="onSubmit()" ngNativeValidate>
Browser’s native validation by MDN. The input element shows a pop up that tell the user what is necesary to submit the form.
Browser’s native validation by MDN

Back to our form

Photo by Alison Wang on Unsplash

Use Template Reference

#f="ngForm"
<form (ngSubmit)="onSubmit(f)" #f="ngForm">
Angular Template-driven form using ngForm
Console.log of the form. The status of the form is invalid because some of the controls are not valid
The status of the form is invalid
<button 
type="submit"
[disabled]="f.status === 'INVALID'"
>
Submit
</button>

Special CSS Classes?

// template-form.component.css.ng-invalid {
border-left: 5px solid #a94442; /* red */
}
Angular adds the ng-invalid class, so the left border is red
Angular adds the ng-invalid class
// template-form.component.css.ng-invalid:not(form) {
border-left: 5px solid #a94442; /* red */
}
Forms with three input elements and a select.
Final form

Quick Summary

Lo Zarantonello
Lo Zarantonello

Written by Lo Zarantonello

Software Engineer | Instructor | Life Form Exploring His Surroundings

No responses yet

Write a response