Angular material mat-sidenav-content click event issue

1.9k Views Asked by At

When I put click event on mat-sidenav-content <mat-sidenav-content (click)="isNavBarOpened=false"> The mat-slide-toggle inside is not working.

Here is the example

3

There are 3 best solutions below

2
On BEST ANSWER

Add $event.stopPropagation() on your mat-slide toggle component so that event will not get bubbled up.

<mat-slide-toggle (click)="$event.stopPropagation()"></mat-slide-toggle>

Forked Example

0
On

Moving the set property value part to a function fixed the issue for me. This way, we need not touch event propagation order.

My guess is moving to function is adding extra CPU cycles and that delay is fixing the issue. But it is just a guess and open for explanations from experts.

<mat-sidenav-content (click)="closeNavBar()">

closeNavBar() {
this.isNavBarOpened=false;
}

Forked Example

2
On

Listen to the change event and toggle your boolean accordingly.

https://stackblitz.com/edit/angular-cvlqrt-qjc44x