Infragistics Blog - Angular

High Performance Angular Grid with Web Sockets
You may have come across the requirement to push data in real time to an Angular Grid. To push data to the browser, you need a technology called WebSocket. You can implement that using NodeJS or ASP.NET SignalR. For the purpose of this article, we will use Web Sockets with NodeJS.

How To Deploy an Angular Application to GitHub
In this article, we will follow a step-by-step approach to deploy an Angular application to a GitHub. We will create a project using Angular CLI and then deploy that to GitHub. Let us get started.

What Is ViewChild and ContentChild in Angular?
This blog shows how Angular ViewChild and ContentChild let you access and manipulate child components and DOM elements within a component's view. Read all.

How To Dynamically Create a Component in Angular
In this article, we will learn to create a component dynamically. You may need to load a component dynamically in various scenarios such as want to show a popup modal etc.

Step by Step: Creating Custom Pipe in Angular
Angular pipes take data as input and transform it to your desired output. For example, using interpolation you are displaying name of the product. Now you want the product name always displayed in the uppercase. You can do this using Angular pipe uppercase.

How to create Custom Validators for Angular Reactive Forms
In this blog post, we will learn to create custom validators in Angular Reactive Forms. If you are new to reactive forms, learn how to create your first Angular reactive form here.

Angular Component Data Flows Using @Output and EventEmitter
Unlike AngularJS, Angular does not have two-way data binding. When I say, Angular doesn’t have two-way data binding, it does not mean you cannot achieve that.

What Are @HostBinding() and @HostListener() in Angular?
To understand @HostListener and @HostBinding, you should have basic knowledge about directives in Angular. There are three types of directives in Angular:

How to Create Your First Angular Reactive Form
Do you know how to create an Angular Reactive Form? Read this blog post to learn all about the process. Detailed steps included. Learn more.