Friday, 23 April 2021

Event Bubbling in JS

 The bubbling principle is simple.When an event happens on an element, it first runs the handlers on it, then on its parent, then all the way up on other ancestors.Let’s say we have 3 nested elements FORM > DIV > P with a handler on each of them:<!DOCTYPE html><html><!doctype html><body><style>  body * {    margin: 10px;    border: 1px solid blue;  }</style><form onclick="alert('form')">FORM  <div onclick="alert('div')">DIV    <p onclick="alert('p')">P</p>  </div></form></body></html>Click...
Continue Reading →

Wednesday, 21 April 2021

Change detection in Angular

 What is change detection?The basic mechanism of the change detection is to perform checks against two states, one is the current state, the other is the new state. If one of this state is different of the other, then something has changed, meaning we need to update (or re-render) the view.Change...
Continue Reading →

Saturday, 17 April 2021

Microsoft ADAL for Angular

 Microsoft ADAL for Angular 6+ with Configurable Settingshttps://www.npmjs.com/package/microsoft-adal-angular6https://www.npmjs.com/package/adal-angularhttps://devblogs.microsoft.com/premier-developer/Setup Angular Application To Use Azure AD Authentication:https://www.c-sharpcorner.com/article/setup-angular-application-to-use-azure-ad-authentication/https://adrianszen.com/2019/02/19/angular...
Continue Reading →

Topics

ADFS (1) ADO .Net (1) Ajax (1) Angular (47) Angular Js (15) ASP .Net (14) Authentication (4) Azure (3) Breeze.js (1) C# (55) CD (1) CI (2) CloudComputing (2) Coding (10) CQRS (1) CSS (2) Design_Pattern (7) DevOps (4) DI (3) Dotnet (10) DotnetCore (20) Entity Framework (5) ExpressJS (4) Html (4) IIS (1) Javascript (17) Jquery (8) jwtToken (4) Lamda (3) Linq (10) microservice (4) Mongodb (1) MVC (46) NodeJS (8) React (10) SDLC (1) Sql Server (32) SSIS (3) SSO (1) TypeScript (3) UI (1) UnitTest (2) WCF (14) Web Api (16) Web Service (1) XMl (1)

Dotnet Guru Archives