HTML Добавить 7 полей ввода различий также в applyFilter
передать значение ввода и ключ этого столбца в виде строки
<mat-form-field>
<input matInput (keyup)="applyFilter($event.target.value, 'aa')" placeholder="Filter">
</mat-form-field>
<mat-form-field>
<input matInput (keyup)="applyFilter($event.target.value, 'bb')" placeholder="Filter">
</mat-form-field>
<mat-form-field>
<input matInput (keyup)="applyFilter($event.target.value, 'col3')" placeholder="Filter">
</mat-form-field>
<mat-form-field>
<input matInput (keyup)="applyFilter($event.target.value, 'col4')" placeholder="Filter">
</mat-form-field>
<mat-form-field>
<input matInput (keyup)="applyFilter($event.target.value, 'col5')" placeholder="Filter">
</mat-form-field>
<mat-form-field>
<input matInput (keyup)="applyFilter($event.target.value, 'col6')" placeholder="Filter">
</mat-form-field>
<mat-form-field>
<input matInput (keyup)="applyFilter($event.target.value, 'col7')" placeholder="Filter">
</mat-form-field>
Youможно найти другие способы написания HTML в соответствии с вашими требованиями к дизайну.
компонент
Создать фильтр obj, имеющий key
: ключ столбца &value
: значение фильтра
filterObj = {};
applyFilter(filterValue: string, key: string) {
this.filterObj = {
value: filterValue.trim().toLowerCase(),
key: key
}
this.dataSource.filter = filterValue;
if (this.dataSource.paginator) {
this.dataSource.paginator.firstPage();
}
}
обновление filterPredicate
как:
this.dataSource.filterPredicate = (data, filter) => {
if(data[this.filterObj['key']] && this.filterObj['key']) {
return data[this.filterObj['key']].toLowerCase().includes(this.filterObj['value']);
}
return false;
}