Edupala

Comprehensive Full Stack Development Tutorial: Learn Ionic, Angular, React, React Native, and Node.js with JavaScript

Angular

How to use angular content projection .?

Angular content projection is one of the important and useful concepts of Angular. Because Angular is a tree of components, we can have nesting components inside one another. The content projection allows us to create a reusable and configurable component depending on the needs of its user using ng-content. Where the user can pass dynamic […]

Angular ViewChildren decorator in details

Angular ViewChild and ViewChildren decorator allow us to access and manipulate HTML elements in DOM or the child component by parent component. Angular provides different ways of communication between components. Components can query the content of their templates to locate instances of element/directive/component, which are known as view children. Angular viewChildren decorator declares a reference […]

Angular template reference variable in detail

The angular template reference variable is often a reference to a DOM element, child component, or directive within a template so we can access and manipulate it in our component. A template reference variable is a reference to one or more elements within a template. When to use Angular template reference? The angular template reference […]

How to install Angular in Ubuntu

Angular is an open-source, front-end web application development framework, it is TypeScript-based and led by the Angular Team at Google and by a community of individuals and corporations. In these articles, we will cover the installation procedure of angular on the Ubuntu 20 operating system. Step for install Angular in Ubuntu To install Angular in […]

Angular share data between components

An Angular component is the basic build block of an Angular framework. The component is responsible for managing a template and providing it with the data and logic it needs. Components can contain other components. This is known as composition. Components can communicate with each other in a loosely coupled manner and in this article […]

Angular two way data binding – Angular ngModel

Angular two-way data binding allows the exchange of data from the component to the view and from the view to the component. It will help users to establish bi-directional communication. Syntax of Angular two way data binding : ngmodel directive Angular two-way data binding can be achieved using a ngModel directive in Angular. The ngModel […]

Scroll to top