Blog_Banner_Asset
    Homebreadcumb forward arrow iconBlogbreadcumb forward arrow iconFull Stack Developmentbreadcumb forward arrow iconHow to Create a Custom Directive in AngularJS :Step by Step Explained

How to Create a Custom Directive in AngularJS :Step by Step Explained

Last updated:
21st Jun, 2021
Views
Read Time
9 Mins
share image icon
In this article
Chevron in toc
View All
How to Create a Custom Directive in AngularJS :Step by Step Explained

For extending the functionality of HTML in angular JS, customs directives are used. The directive is defined by the users for extending HTML functionalities through the desired functions. Any element for which the customs directives are generated gets replaced by it. Although lots of directives are present in angular JS, there might be cases that require custom directives.

The following elements can be used for creating custom directives by angular JS. The activation of a directive is based on the type of a directive.

  • Element directives: Whenever there is an element that matches, the activation of the directive takes place.
  • Attribute: With the matching of an attribute, the directive gets activated. 
  • CSS: With the matching of a CSS style, the directive is activated.
  • Comment: On the encounter of a matching comment, the directive gets activated.

Check out our free courses to get an edge over the competition.

Registering a Module with that of a Directive

 Program for module registering to a directive 

Ads of upGrad blog

Check out upGrad’s Java Bootcamp

Source

A directive() function call has been made in the module. Through this call, a new directive can be registered. 

The directive to register has a specific name which is used as the first parameter to the function. This name appears in the HTML template when the user wants to activate the directive. In the code, the name ‘div’ is used. This means that every time the HTML element with the name ‘div’, matches an element in the HTML template, the directive is activated.

A factory function is used as a second parameter in the function directive. On invoking the function, a directive definition should be returned. The function will be invoked by the angular JS, which will return an object of JavaScript that will contain the directive definition. The above code shows the return of the JavaScript object.

Two properties exist with the returned object; a restrict, and a template field.

Whether the activation of a directive should follow by the matching of an HTML element or by the matching of an attribute, will be set by the restrict field. We can specify if a directive should get activated by HTML elements through setting restrict to E and setting it to A, the users can specify that the directive will be activated only through the attribute matching of an element. Specifying both AE will allow the matching of both an HTML element and an attribute.

The other property i.e. the template field is involved in replacing the contents of the matching div elements.

Check out upGrad’s Advanced Certification in Blockchain

If the HTML in a HTML page is like this

<div ng-controller=”MyController” >
                <div>This div will be replaced</div>
</div>     

The activation of the directive that was added will be done when the div element is found out by angular JS.

Explore our Popular Software Engineering Courses

Data Binding in Angular

Binding data meaning is to be known before understanding the concept of angular data binding. With the changes in the value of data, there are automatic changes with the elements that are bound to the data. It can be one-way or can be a two-way process. Angular data binding is of four types; Interpolation, Property Binding, Event Binding, and Two-Way Data Binding.

Read: Difference Between Angular vs AngularJs 

Creation of a Custom Directive

A few steps involved in the creation of a custom attribute directive are;

Step1: A directive is created by a class decoration through using @Directive decorator.

Step2: Renderer and Services ElementRef are injected.

Step 3: The directive is to be registered with the module.

Step 4: the directive is to be used.

  • Application of a custom directive to an element of HTML makes the element to be known as “HOST ELEMENT”.

The example will show the creation of a custom directive in angular JS. A div tag will be injected when the directive is being called.

Explore Our Software Development Free Courses

An example of code for the creation of custom directive

Source

Explanation of the code:

  • A module is first created for the application of angular. The creation of the module is important for creating custom directives, because with the use of this module, the custom directive will be created.
  • A custom directive with the name ‘ngGuru’ is created and a function is defined that will contain the custom code of the directive.
    • Defining the directive, the letter G is capitalized in ngGuru. While accessing from the div tag, the name remains as ng-guru. The custom directives that are defined in an application are understood through this format in angular. The letter ‘ng’ prefixes the name of any custom directives and a hyphen symbol ( –) should be used whenever a directive is being called. Lastly, the letter that follows the “ng” can either be lowercase or uppercase while the directive is defined.
  • The parameter is defined by angular i.e. the template parameter is used. It is defined in a way that whenever there is a use of the directive, the template value is to be used and injected while calling the code.
  • The program is making use of the “ng-guru” directive which is custom created. While doing this, the template value will get injected here.

In-Demand Software Development Skills

Successful execution of the code will generate the following output.

Output of the code 

Source

In the output the custom directive i.e. the ng-guru can be seen with the defined template. The template is defined for displaying a custom text.

Scope of AngularJS Directives

The controller is bound to the view through the scope which manages the flow of data between the controller and the view. The custom directives in angular will by default are accessing the scope object that is contained in the parent controller. Therefore, the process becomes an easy one where the data that is passed to the controller can be used by the custom directive. 

An angular custom directive example is shown below to show the use of scope on the custom directive. An example of code 

Source

Explanation of the code

  • A controller with the name “DemoController” is created first. A variable with the name

‘tutorialName’ is defined in the controller and is attached to the scope. The command used is: 

$scope.tutorialName = “AngularJS”.

  • The variable i.e. ‘tutorialName’ can be called in the custom directive through the use of an expression. As the variable is defined in “DemoController”, it will be accessible. For our directive, “DemoController”,= will be the parent. 
  • The controller is referenced in a div tag that will become the parent div tag. The whole thing is to be carried out first so that the custom directive can access the variable ‘tutorialName’.
  • Finally, the custom directive which is “ng-guru” is attached to the div tag.
  • The successful execution of the code will generate the following output.

Output of the above code

Source

In the output, it can be observed that the tutorialName which is the scope variable is being used by the custom directive which is “ng-guru”.

Must Read: AngularJS for Web Development: Top 10 Compelling Reasons

upGrad’s Exclusive Software Development Webinar for you –

SAAS Business – What is So Different?

Event Handling in a Directive

Handling of events such as mouse clicks or the clicks of buttons can be done from within a directive. The link function is used to handle the events. The directive is attached to the elements of the DOM in a page of HTML through the link function.

Syntax used for linking is: link: function ($scope, element, attrs).

Three parameters are accepted by the link function; scope, element, and the attributes.

Ads of upGrad blog

Therefore,

  • A custom directive can be created for injecting the code in the main application of angular.
  • Members can be called by the custom directives. These members are defined within the object’s scope within a controller. Keywords used are ‘controller’, keyword controllerAs’, and the keyword ‘template’
  • Embedded functionality can be provided through the nesting of the directives.
  • Common code can be injected by making the directives re-usable.
  • Custom tags of HTML can be created through custom directives. These tags will have the functionality of their own and be defined as their requirement.
  • +DOM events can be handled from the directive.

Learn Software Courses online from the World’s top Universities. Earn Executive PG Programs, Advanced Certificate Programs, or Masters Programs to fast-track your career.

Read our Popular Articles related to Software Development

Conclusion

Custom directives in angularjs are used for extending HTML functionality in angular. The creation of this type of custom directive is discussed in the article with an angular custom directive example. Overall a bit of the programming concept has been touched. However, if you desire to be an expert in software development, you should master your skills of programming applied in the software industries. Considering this, you can check the course Executive PG Programme in Software Development – Specialisation in Full Stack Development, offered by upGrad. The 13 months long program is designed for mid-level professionals within 21 to 45 years of age and who are awaiting their luck in the software development sector. With over 16 programming languages and tools, online sessions, and classes from leaders, the course will provide you with placement assurance in top industries. If you are interested, contact our team for further details. We will be at your assistance. 

Profile

Rohan Vats

Blog Author
Software Engineering Manager @ upGrad. Passionate about building large scale web apps with delightful experiences. In pursuit of transforming engineers into leaders.

Frequently Asked Questions (FAQs)

1Can we create custom directive in AngularJS?

AngularJS is a powerful JavaScript framework for building single-page web applications. AngularJS is based on the Model-View-Controller (MVC) software architectural pattern. Angular provides the ability to create custom directives. A directive is basically a custom HTML attribute. It is a way to extend HTML vocabulary and modify the behavior of the DOM and your Angular application. There are two ways to create a custom directive in Angular using AfterViewInit and AfterContentInit.

2What is the difference between link and compile in AngularJS?

AngularJS provides two methods to apply templates and styles to a view: compile and link. The compile method is called once during application start up before the application itself starts, and the link method is called once the application is started to run the specified section of code. The difference between Link and Compile will vary on the situation. The main point of Link is that it is used to bootstrap AngularJS with a static file, while Compile allow us to change the HTML.

3What are the uses of AngularJs?

AngularJS is a JavaScript framework that helps us in development. AngularJS is a best fit for developing web applications. It is the programming model for developing single page applications. Actually, AngularJS extends HTML vocabulary for expressions, directives, controllers, filters, etc. If a developer uses AngularJS to develop a web application it is called AngularJS application. It is a good idea to use AngularJS for developing complex web applications. It works as an extension to HTML and add features to HTML. AngularJS applications are highly scalable and testable. It maintains the structure of HTML document and allows optional structure for defining the logic.

Explore Free Courses

Suggested Blogs

Top 7 Node js Project Ideas &#038; Topics
31574
Node.JS is a part of the famous MEAN stack used for web development purposes. An open-sourced server environment, Node is written on JavaScript and he
Read More

by Rohan Vats

05 Mar 2024

How to Rename Column Name in SQL
46935
Introduction We are surrounded by Data. We used to store information on paper in enormous file organizers. But eventually, we have come to store it o
Read More

by Rohan Vats

04 Mar 2024

Android Developer Salary in India in 2024 [For Freshers &#038; Experienced]
901324
Wondering what is the range of Android Developer Salary in India? Software engineering is one of the most sought after courses in India. It is a reno
Read More

by Rohan Vats

04 Mar 2024

7 Top Django Projects on Github [For Beginners &amp; Experienced]
52104
One of the best ways to learn a skill is to use it, and what better way to do this than to work on projects? So in this article, we’re sharing t
Read More

by Rohan Vats

04 Mar 2024

Salesforce Developer Salary in India in 2024 [For Freshers &#038; Experienced]
909196
Wondering what is the range of salesforce salary in India? Businesses thrive because of customers. It does not matter whether the operations are B2B
Read More

by Rohan Vats

04 Mar 2024

15 Must-Know Spring MVC Interview Questions
34760
Spring has become one of the most used Java frameworks for the development of web-applications. All the new Java applications are by default using Spr
Read More

by Arjun Mathur

04 Mar 2024

Front End Developer Salary in India in 2023 [For Freshers &#038; Experienced]
902388
Wondering what is the range of front end developer salary in India? Do you know what front end developers do and the salary they earn? Do you know wh
Read More

by Rohan Vats

04 Mar 2024

Method Overloading in Java [With Examples]
26237
Java is a versatile language that follows the concepts of Object-Oriented Programming. Many features of object-oriented programming make the code modu
Read More

by Rohan Vats

27 Feb 2024

50 Most Asked Javascript Interview Questions &#038; Answers [2024]
4385
Javascript Interview Question and Answers In this article, we have compiled the most frequently asked JavaScript Interview Questions. These questions
Read More

by Kechit Goyal

26 Feb 2024

Schedule 1:1 free counsellingTalk to Career Expert
icon
footer sticky close icon