This post demonstrates a complete CRUD application using AngularJS ngResource module with $resource service to communicate with REST API on…
AngularJS ngResource module provides first class built-in support for interacting with RESTful services asynchronously, via $resource service. $resource is a…
AngularJS Custom Directive's can have controllers. Controllers in Directive's are used for inter-directive communication. This post discusses Directive's controller, require…
AngularJS Directive's transclude & ng-transclude can be used to create directive that wraps other elements. By-default, AngularJS Directive element replaces…
AngularJS Directive's replace option can be used to replace the container element itself by directive content. By default, the directive…
AngularJS Directive's link key defines link function for the directive. Precisely, using link function, we can define directive's API &…
AngularJS Directive's scope key provides us complete control over the scope of our directive element. Our goal while writing a…
Directives are AngularJS way of extending HTML. As the AngularJS Official documentation says, they are basically markers on a DOM…
AngularJS Directive's restrict key defines how a directive can be used in HTML. In this post, we will see all…