It's all about Technology. Angular with Core .Net and MVC Razor Engine
How to create @Directives in Angular
Get link
Facebook
X
Pinterest
Email
Other Apps
Angular - How to create @Directives in Angular , ANGULAR WITH CORE .NET AND MVC RAZOR ENGINE
Directives in Angular
What is Directive?
The directive is markers on a DOM element that tell Angular to attach a specified behavior to that DOM element or even transform the DOM element and its children.
Types of Directive
There are 4 type of Directives listed below
Components directives : It is mainly used to specify the HTML templates. It is the most commonly-used directive in an Angular project. It is decorated with the @component decorator e.g. app.component
Structural directives : The structural directive is used to add or remove the HTML Element in the Dom Layout e.g. *ngIf , *ngFor .. etc
Attribute directives : The Attribute directives is used to change/modify apearance of DOM element *ngClass , *ngStyle .. etc
Custom Directive : The Custom Directive is created by a developer based on requirement
Advantage of using Custom Directive
it is vulnerable to XSS attacks when we directly use ElementRef in our application. It is better to create a custom directive and use ElementRef inside directive to change appearance or behavior of the host element.
HostListener & HostBinding
HostListener : This is a function decorator that accepts an event name as an argument. When that event gets fired on the host element it calls the associated function.
HostBinding : This is a function decorator that accepts a css style as an argument.
Let's create one custom directive based on our requirement to understand it better
Requirement : Create a directive which will increase and decrease font size of DOM element on mouse enter and hover and will also change its background color
Let's follow below step to full fill the requirement
Step 1: Create a new Projet using command ng new Directive-Angular
Step 2: Create a custom direct using command ng g directive TextTransformation
React Fundamentals, ANGULAR WITH CORE .NET AND MVC RAZOR ENGINE React Fundamentals React Native runs on React , a popular open-source library for building user interfaces with JavaScript. To make the most of React Native, it helps to understand React itself. This section can get you started or can serve as a refresher course Here, we will learn how to create a simple Hello World in react native Let’s create a simple application of React Native We will follow the below command to create a Hello Worlds in React Native Use below command to install React native · npm install –g react-native-cli The above instructions work best if you need to build native code in your application or want to integrate React Native in an existing application. If you want to quickly prototype an application and you can use Create React Native App module th...
How to disable table row in Angular ? , ANGULAR WITH CORE .NET AND MVC RAZOR ENGINE How to disable table row in Angular In this article we will learn how to disable every alternate (even) row in Table by using CSS. Step 1: Let's create an HTML table using below code <table class="main-table"> <thead> <tr> ...
What is the Difference Between Razor and Blazor, ANGULAR WITH CORE .NET AND MVC RAZOR ENGINE Blazor Blazor enables sharing code across client- and server-side processes, server-side rendering functionality, and more. When building a single-page application, Angular or React are popular JavaScript frameworks to use. Blazor is a framework for building interactive client-side web UI with .NET: · Create rich interactive UIs using C# instead of JavaScript. · Share server-side and client-side app logic written in .NET. · Render the UI as HTML and CSS for wide browser support, including mobile browsers. · Integrate with modern hosting platforms, such as Docker . ...
Comments
Post a Comment