Join Justin Schwartzenberger for an in-depth discussion in this video Working with events in directives, part of Angular Essential Training.
- [Instructors] Directives can not only handle…changing host element properties via HostBindings…but they can also be set up to respond…to host element events via HostListeners.…Over in the favorite.directive.ts file,…let's add some HostListeners to toggle on and off…a CSS class is-favorite-hovering.…Angular provides another decorator for handling wiring up…to host element events.…The HostListener decorator.…HostListener is found in the angular core scope package,…just like HostBinding.…
So we can add that to the import statement.…Before we use the HostListener decorator,…let's add another HostBinding for the…is-favorite-hovering CSS class.…And we'll use it to decorate a favorite directive…class property named hovering,…setting it to a default value of false.…We will toggle this value from mouse hover events…to handle adding or removing the CSS class.…
Okay, let's add some HostListeners.…The HostListener decorator takes in the name of the event…as a string for the first argument…and an optional second argument…that is an array of arguments…
Author
Updated
3/1/2018Released
10/31/2016Justin Schwartzenberger steps through the framework one feature at a time, focusing on the component-based architecture of Angular. Learn what Angular is and what it can do, as Justin builds a full-featured web app from start to finish. After mastering the essentials, you can tackle the other project-based courses in our library and create your own Angular app.
- What is Angular?
- Setting up an Angular template
- Creating a component
- Binding events and properties
- Getting data to components
- Using directives and pipes
- Creating Angular forms
- Validating form data
- Understanding dependency injection
- Providing services
- Making HTTP calls
- Routing
Skill Level Intermediate
Duration
Views
Q: This course was updated on 03/01/2018. What changed?
A: The following topics were updated: directives and pipes, forms, dependency injection and services, HTTP, and routing.
Related Courses
-
Introduction
-
Welcome1m 27s
-
Why use AngularJS 2?1m 36s
-
Using the exercise files1m 51s
-
Basics of TypeScript2m 24s
-
Course overview1m 2s
-
-
1. Architecture Overview
-
Directives and pipes1m 40s
-
Data binding1m 53s
-
Dependency injection1m 54s
-
Data persistence1m 47s
-
Routing1m 50s
-
2. Components
-
NgModule and the root module5m 59s
-
Component metadata2m 4s
-
The component selector2m 12s
-
The component template2m 59s
-
Styling a component5m 3s
-
Property binding2m 30s
-
-
3. Directives and Pipes
-
Structural directives: ngFor3m 34s
-
Attribute directives: custom3m 53s
-
Using directive values3m 36s
-
Angular pipes: built in3m 1s
-
Angular pipes: custom4m 28s
-
4. Forms
-
Angular forms1m 29s
-
Template-driven forms4m 45s
-
Model-driven forms4m 19s
-
Validation: built in3m 28s
-
Validation: custom3m 2s
-
Error handling5m 10s
-
-
5. Dependency Injection and Services
-
Services in Angular2m 22s
-
Class constructor injection2m 39s
-
The Inject decorator3m 40s
-
Injection token3m 36s
-
6. HTTP
-
The Angular HttpClient2m 5s
-
-
7. Routing
-
Router links2m 36s
-
Conclusion
-
Next steps1m 20s
-
- Mark as unwatched
- Mark all as unwatched
Are you sure you want to mark all the videos in this course as unwatched?
This will not affect your course history, your reports, or your certificates of completion for this course.
CancelTake notes with your new membership!
Type in the entry box, then click Enter to save your note.
1:30Press on any video thumbnail to jump immediately to the timecode shown.
Notes are saved with you account but can also be exported as plain text, MS Word, PDF, Google Doc, or Evernote.
Share this video
Embed this video
Video: Working with events in directives