angularjs

Angularjs Server Communication using ngResource-CRUD Application

AngularJS ngResource module provides first class built-in support for interacting with RESTful services asynchronously, via $resource service. $resource is a…

8 years ago

AngularJS Custom-Directives controllers, require option guide

AngularJS Custom Directive's can have controllers. Controllers in Directive's are used for inter-directive communication. This post discusses Directive's controller, require…

8 years ago

AngularJS Custom-Directives transclude, ngTransclude guide

AngularJS Directive's transclude & ng-transclude can be used to create directive that wraps other elements. By-default, AngularJS Directive element replaces…

8 years ago

AngularJS Custom-Directives replace option guide

AngularJS Directive's replace option can be used to replace the container element itself by directive content. By default, the directive…

8 years ago

AngularJS Custom-Directives link-function guide

AngularJS Directive's link key defines link function for the directive. Precisely, using link function, we can define directive's API &…

8 years ago

AngularJS Custom-Directives scope guide

AngularJS Directive's scope key provides us complete control over the scope of our directive element. Our goal while writing a…

8 years ago

AngularJS Directives Tutorial

Directives are AngularJS way of extending HTML. As the AngularJS Official documentation says, they are basically markers on a DOM…

8 years ago

AngularJS Custom-Directives restrict option guide

AngularJS Directive's restrict key defines how a directive can be used in HTML. In this post, we will see all…

8 years ago

Angularjs Routing Tutorial using ui-router

UI-router is a routing framework for AngularJS. It's a flexible alternative to ngRoute as it supports Nested & Multiple Named…

8 years ago

AngularJS Routing Tutorial using ngRoute

AngularJS Routes enable us to implement multiview SPAs [Single Page Applications]. A multiview application would consist of multiple views [HTML…

9 years ago