Как сделать фильтр в таблице данных углового материала для конкретного столбца - PullRequest
0 голосов
/ 16 июня 2019

я пробую таблицу данных угловых материалов.

Как мы знаем, фильтрация для каждой строки по умолчанию выполнялась.

Если я хочу отфильтровать столбцы, что мне делать?

Должен ли я написать метод для получения всех записей, затем выполнить итерацию по нему и сравнить конкретный столбец?

component.ts


ngOnInit() {
    this.service.getUser().subscribe( results => {
        if(!results){

          return;
        }
        console.log(results);
        this.dataSource = new MatTableDataSource(results);
        this.dataSource.sort = this.sort;
    })


onSearchClear(){
    this.searchKey="";
    this.applyFilter();
  }

  applyFilter(){
    this.dataSource.filter = this.searchKey.trim().toLowerCase();
  }

component.html


<mat-form-field class="search-form-field">
      <input matInput [(ngModel)]="searchKey" placeholder="search by userName" (keyup)="applyFilter()">
    </mat-form-field>

1 Ответ

2 голосов
/ 16 июня 2019

вы должны использовать свойство filterPredicate MatTableDataSource

после инициализации this.dataSource определите пользовательскую функцию filterPredicate следующим образом:

this.dataSource = new MatTableDataSource(results);
this.dataSource.sort = this.sort;
this.dataSource.filterPredicate = function(data: any, filterValue: string) {
  return data.specificColumn /** replace this with the column name you want to filter */
    .trim()
    .toLocaleLowerCase().indexOf(filterValue.trim().toLocaleLowerCase()) >= 0;
};
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...