Blogs

Installing Angular CLI-1

21 Jul 2020 Admin 0

579

Tools/application you have need node js code editor(Visual Code Studio) git(optional) Install Globally Latest Angula...

Angular Interpolation-2

15 Aug 2020 Admin 0

555

Variable Call export class TestComponent implements OnInit {       // public variable public na...

Class Binding-3

15 Aug 2020 Admin 0

516

Bind class in html page   This is load from the method {{greetUser()}} This is danger class if...

Style Binding-4

15 Aug 2020 Admin 0

538

Component.html file <h1 [style.color]="'green'">Hello Style binding single</h1> <h1 [style.color]=&quo...

Angular Switch-5

15 Aug 2020 Admin 0

498

In ts file Declear a variable public color ='red'; In html file       

Angular Loop-6

15 Aug 2020 Admin 0

558

Angular for Directive Declare for array in ts file public colors =['red','blue','green','black','...

Angular Routing & Navigation-7

15 Aug 2020 Admin 0

497

First open “index.html” and keep <base href=”/”> in head section. Then install angular routing by using a command.  &ldqu...

Angular Template Driven Form-8

15 Aug 2020 Admin 0

600

Angular Template Driven form with validation First add "import { FormsModule } from '@angular/forms';" in app.module.ts file live Link here : 

Binding Data with ngForm-9

15 Aug 2020 Admin 0

604

Open app.module.ts file Include Form module “import { FormsModule } from '@angular/forms';”  imports: [     BrowserModule,...

Two Way Data Binding-10

15 Aug 2020 Admin 0

626

Component.ts file val: string = ' '; Component.html  file <div class="col-12">         <...