skip to Main Content

Html – Changing the ripple color of a mat-input

I've been struggling for a while now on how to manually change the ripple color of a <mat-input> element and I can't seem to get it to work in any way. <input matInput type="number" (keydown)="updateManualPage(1)" placeholder="Filter" formControlName="filterParam1"> I've tried everything…

VIEW QUESTION

Javascript – Datasource mat-table is not updating

I have a function that trigger when I sort the table deepens of a column I click but the data is not updating. This is the function and the table code: <table mat-table #table [dataSource]="dataSourceMD" matSort (matSortChange)="getRowMaximoTable($event)" matTableExporter #exporter="matTableExporter" #sortMD="matSort"…

VIEW QUESTION

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
Back To Top
Search