AngularJS makes common data binding tasks easy to implement.We set the viewmodel for our application using the $scope in the controller and access it in the view.AngularJS automatically updates the view when the value of the $scope changes. One common feature is iterating over a collection of items.We can implement this scenario easily using the […]
AngularJS
Directives in AngularJS
HTML is designed to display static documents.So if a web site contains just static documents then HTML is sufficient for such a site.But web applications of today are much more than just a group of static documents.Web applications are expected to perform lot of processing on the client.To provide user interactivity web applications use client side […]
A basic introduction to Filters in AngularJS
Filters AngularJS filters are used to transform the data for display.We can apply any transformation required to display the data.So filters are about the presentation of the data to the end user. For example we can remove specific values from the displayed data. We can apply filter to an expression in the view as {{ expression | […]
Controller in AngularJS
AngularJS framework is based on the Model View Controller architectural pattern for creating Rich Internet Applications.Controller is an important component of any AngularJS application.Controller in AngularJS acts as a glue between the model and the view and has the following important responsibilities: • Define the model object which can be accessed from the view • […]
Beginning AngularJS
When developing web applications HTML is the main markup language irrespective of other web development technologies such as ASP.NET .HTML is a declarative language designed for describing the documents which can be rendered by a browser. The web applications of today are much more than a group of static documents.Today the web applications are completely dynamic ,this […]