Tag: Angularjs
-
Simplifying Routing in AngularJS
Usually AngularJS is used to create a single page application with multiple views. But we can create multiple views in an AngularJS-based single page application by using routing – and in this post we’ll learn how to do that! What is Routing? Routing allows us to logically divide the application in the multiple logical views…
-
How to use AngularJS in ASP.NET MVC and Entity Framework
Read full article on the Infragistics blog These days, it seems like everyone is talking about AngularJS and ASP.NET MVC. So in this post we will learn how to combine the best of both worlds and use the goodness of AngularJS in ASP.NET MVC by demonstrating how to use AngularJS in an ASP.NET MVC application.…
-
How to share data between controllers in AngularJS
In my AngularJS classes, I often get asked, “How do I share data between the controllers in AngularJS?” On the Internet, there are many solutions suggested. However, I prefer to share data using the Shared Data Service method, and that’s what we’re going to explore in this post. To start with, let’s suppose that…
-
AngularJS Custom Directive course by Dan Wahlin : Get discount here
I can give free access of the course to four of you. Tweet me with the course URL why you deserve free access of the course. Click on this to get access of the course in 15$ only I am learning AngularJS. And as always best to learn from the course of Dan Wahlin .…
-
Directives in AngularJS simplified with examples: Part 1
Thanks First At the very beginning of this post, I want to give credit to following two online courses. What I learnt from these courses, converted in this post. · AngularJS Custom directive course by Dan Wahlin.[Note: Click on this link to get 15% discount] · AngularJS Directives Fundamentals by Joseph Eames on Plural Sight…
-
Services in AngularJS simplified with examples
Read: 21 points cheat sheet on AngularJS controller and the $scope object What is service? It provides us method to keep data across the lifetime of the angular app It provides us method to communicate data across the controllers in a consistent way This is a singleton object and it gets instantiated only once per…
-
How to use NodeJS, Express, and Bower to Create AngularJS apps
Read full article on the Infragistics blog Recently I heard – “IDE makes you ignorant, so do not over rely on the IDE”. Being a .NET developer, we cannot think our lives beyond Visual Studio and hence somewhere we become ignorant. We really don’t care about the behind the scene complexities. We create a project…
-
21 points cheat sheet on AngularJS controller and the $scope object
This blog post is a 21 points cheat sheet on the AngularJS controller and the $scope object. These points can be used a quick notes while working with two important components of Angular app controller and the $scope object Notes on $scope object $scope is a glue between the view and the controller. It connects…
-
Learn AngularJS Hour 5: All about $scope object
In hour 1 , we learnt to get started with AngularJS. In hour 2 , we learnt about AngularJS Template. In hour 3 , we learnt about two way bindings and filter. On hour 4 , we learnt about $http service and making HTTP operations. In 5th hours of series, we will learn about $scope…