Our Insights
Innovative Ways - Satisfied Clientele
Innovative Ways - Satisfied Clientele
Kapil Panchal - April 27, 2021
A wide range of individuals, including those with visual or motor impairments, use the computer. A variety of assistive devices are available to make communicating with web-based software applications much simpler for these communities. Furthermore, making an application more accessible increases the overall user experience for all apps. Table of Content 1. What is accessibility? 2. Accessibility attributes 3. Angular UI Component 4. Augmenting Native Elements 5. Using...
Kapil Panchal - April 07, 2021
If we're familiar with the Angular framework, we'll know that by default, any asynchronous event triggers the change detection process. In certain situations, we don't even have to worry about it; it just works as expected. However, in some cases, running the change detection process too frequently can lead to poor runtime efficiency. Table of Content 1. Execution of code in the NgZone 2. Incorrect usage of the runOutsideAngular method 3. Execution of code outside...
Kapil Panchal - April 01, 2021
In this blog, we'll look at a new API in Angular CLI that allows us to add new CLI features and enhance existing ones. We'll go over how to interact with this API and what extension points we can use to extend the CLI's features. With Angular 8, the Builders API was released, and it includes the ability to override commands such as ng build, ng test, and ng lint. Not to be confused with Angular Schematics, which can be used to add custom commands to ng generate or provide support for ng...
Kapil Panchal - February 22, 2021
File upload functionality is a common requirement professionals expect in any candidate. Angular, being a modern web application development framework helps you with powerful tools to accomplish this task seamlessly. In this comprehensive guide, we will learn practically how to upload a file in Angular, covering various methods and best practices. Whether you’re looking to upload files in Angular for the first time or aiming to enhance your existing Angular file upload implementation,...
Kapil Panchal - February 11, 2021
In this blog, we will introduce infinite scrolling in our Angular application. When we prepare an application, we deal with tons of files at the same time. In this situation, a question will be asked: how to display thousands of registrations on a single page? It is not a good practice to load thousands of records at once on one page, and there are many benefits to implement infinite scrolling. Increase the time on our web site so that we can have faster operations Make...