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…
This post shows integrating AngularJS with Spring MVC 4, focusing on routing using ui.router module. We will discuss ui.router based…
UI-router is a routing framework for AngularJS. It's a flexible alternative to ngRoute as it supports Nested & Multiple Named…
This post demonstrates integrating AngularJS with Spring MVC 4, focusing on routing using ngRoute module. We will discuss route configuration…