У меня есть список ползунков, представленных в таблице Mat, и последний слайдер отображает общее количество. Мне нужно сбросить значение до 0, если оно перемещено, а общее количество больше 100. Это прекрасно работает, если я отпущу мышь внутри элемента слайдера, но если я отпущу мышь немного за пределами элемента, значение не будет сброшено ,
Мне нужно получить доступ к matSlider по ссылке или идентификатору, чтобы установить значение в таблице mat. но я не смог найти способ добиться этого.
Я приложил код того, что я пробовал до сих пор, а также ссылку на стек для бликов для того же. Кто-нибудь может помочь? спасибо.
ссылка на стек стека
<table mat-table [dataSource]="dataSource" class="mat-elevation-z8">
<!--- Note that these columns can be defined in any order.
The actual rendered columns are set as a property on the row definition" -->
<!-- Position Column -->
<ng-container matColumnDef="position">
<th mat-header-cell *matHeaderCellDef> Name </th>
<td mat-cell *matCellDef="let element"> {{element.name}} </td>
<td mat-footer-cell *matFooterCellDef>
total value slider
</td>
</ng-container>
<!-- Name Column -->
<ng-container matColumnDef="name">
<th mat-header-cell *matHeaderCellDef> Slider </th>
<td mat-cell *matCellDef="let element">
<mat-slider (input)="element.value = $event.value" (onChange)="change(element)" (mouseup)="change(element)"
(pointerup)="change(element)" (slideend)="change(element)" [ngModelOptions]="{standalone: true}"
[max]="element.max" [(ngModel)]="element.value" [min]="element.min">
</mat-slider>
{{element.value}}
</td>
<td mat-footer-cell *matFooterCellDef>
<mat-slider [disabled]="true" #slider [max]="100" [min]="0" [value]="getTotal()"></mat-slider>
{{getTotal()}}
</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-footer-row *matFooterRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
<!-- Copyright 2019 Google LLC. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license -->
import {Component} from '@angular/core';
export interface PeriodicElement {
name: string;
id: number;
max: number;
min: number;
value : number;
}
const ELEMENT_DATA: PeriodicElement[] = [
{id:1,name:"test1",max:100,min:0,value:0},
{id:2,name:"test2",max:100,min:0,value:40},
{id:3,name:"test3",max:100,min:0,value:50},
];
/**
* @title Basic use of `<table mat-table>`
*/
@Component({
selector: 'table-basic-example',
styleUrls: ['table-basic-example.css'],
templateUrl: 'table-basic-example.html',
})
export class TableBasicExample {
displayedColumns: string[] = ['position', 'name'];
dataSource = ELEMENT_DATA;
change($event:any){
console.log($event.value);
if(this.getTotal() > 100){
console.log('total is greater than 100');
$event.value = 0
}
}
getTotal(){
return (this.dataSource.map(t => t.value).reduce((acc, value) => +acc + +value, 0));
}
}
/** Copyright 2019 Google LLC. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license */