Infragistics Blog

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.

Why JavaScript is Better Than jQuery for Web Page Redirection
Explore best practices for web page redirection with JavaScript and jQuery.

How to Count the Number of Properties of the JavaScript Object
While working with JavaScript, I come across a requirement to count a number of properties in a JavaScript object.

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.

Conditional Validation on valueChanges Method in Angular Reactive Forms
Do you know how to use Angular Reactive Forms value change detection? This blog post will show you the ways.

How To Choose the Best Chart for Your Data
The amount of data at our fingers tips today can be overwhelming. How do you know what really matters? Data visualizations can help, but how can you set up your data to best visualize it? What chart will help you analyze and digest the data into actionable insights?

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.