angular 2

angular

ActivatedRouteSnapshot Class to Ease Your Routing Life in Angular

Reading Time: 3 minutes Routing is the most common and important feature in each and every application perhaps it is a web or a mobile one.So, In this blog, we are going to talk about the ActivatedRouteSnapshot and its properties which helps the developer to establish the roadmap of routing in an application. So before diving deep into ActivatedRouteSnapshot let’s start we a question what is ActivatedRouteSnapshot? What is Continue Reading

Manipulating Server returned dates at client Side in Angular

Reading Time: 2 minutes Hey Visitor, Have you ever faced an issue with the date values on your website, when the date and time returned from server doesn’t change according to the client timezone , for eg. values returned from server at US will be different for a client at India so we need to manipulate the received time according to Indian Time Zone. So recently, I encountered this Continue Reading

Using Http services for storing and fetching user info: Angular 2

Reading Time: 2 minutes Using Angular 2 Http get, post services is the most essential requirement when you are working on any Angular 2 app because anyhow you will have the scenario to store some user information from your end and you have to fetch some information from their end as well if you know what I mean. So here in this blog, we are going to create an Continue Reading

Using Resolve -Promises in Angular 2 Http Services

Reading Time: 2 minutes You have a huge list of users that you have to show on one of the views in angular 2 app, you called the action to redirect to users list view and the page is blank because your HTTP service is still loading the list of users from the external API and until it grabs all the list it can’t show anything on the view, isn’t Continue Reading

Key points to build an Angular application

Reading Time: 4 minutes This Blog is about Angular and why developers should choose angular to build an application. And we will also discuss the difference between its current version and previous versions. What Angular is : Angular is the perfect choice for Single Page Application(SPAs). AngularJS takes another approach. AngularJS is a structural framework for dynamic web apps. It tries to make something as small as possible the Continue Reading

Magic Of Dependency Injection in Angular 2

Reading Time: 3 minutes When i was a kid Injection word was my biggest nightmare, but since I have become a programmer and jovial by doing clean, crisp and precise applications the “injection” word seems the most wonderful word to me, as this word brings so much ease, reduces so much coding effort and helps us to build a project quickly. When I took Angular 2 to build my application then Continue Reading

Implementing ag-Grid in Angular 2

Reading Time: 4 minutes What is ag-Grid? ag-Grid is a JavaScript Data Grid for Building Enterprise Web Applications. It is one of the most widely used grid. It provides features like sorting, filtering, selection, re-sizing and many more. Here’s an inspiring article of how ag-grid was developed. Prerequisite : To understand how to implement ag-Grid in your Angular 2 application, you need to have a basic knowledge of Angular Continue Reading