skip to Main Content

Css – Angular Material – Mat-Accordion Shadow effect on selection of that Accordion Description Item

I am using Angular Material 14 with Angular 15 and below is the code to display Menu items with mat-nav-list <mat-nav-list role="list"> <a mat-list-item role="listitem" class="list-item-setting" matTooltipPosition="right" routerLinkActive="active" [routerLinkActiveOptions]="{exact:true}" class="admin-link"> <mat-icon class="list-item-setting">user1</mat-icon> <span>User 1</span> </a> <a mat-list-item role="listitem" class="list-item-setting" matTooltipPosition="right"…

VIEW QUESTION

Html – Angular mat table sorting when column has two properties

I am implementing a table with MatSort where every column sorting works except one (the third): <ng-container matColumnDef="nbreEnregistrementTotal"> <th mat-header-cell *matHeaderCellDef mat-sort-header>N° enregistrement dans le fichier</th> <td mat-cell *matCellDef="let row"> {{row.nbreEnregistrementTotal}}</td> </ng-container> <ng-container matColumnDef="nbreMouvementsDetailsDiffusees"> <th mat-header-cell *matHeaderCellDef mat-sort-header>N° enregistrement acceptées</th>…

VIEW QUESTION

Updating mat-calendar date css on an event

I am trying to update the css of specific dates in mat calendar, when the user clicks on a button. This is the code I have: app.component.ts: import { Component, ViewEncapsulation } from '@angular/core'; import { MatCalendarCellClassFunction } from '@angular/material/datepicker';…

VIEW QUESTION
Back To Top
Search