“Wielokrotne paginację materiał kątowy” Kod odpowiedzi

Wielokrotne paginację materiał kątowy

@ViewChildren(MatPaginator) paginator = new QueryList<MatPaginator>();
@ViewChildren(MatSort) sort = new QueryList<MatSort>();
Depressed Dingo

Wielokrotne paginację materiał kątowy

private paginator: MatPaginator;
  private reportingPaginator: MatPaginator;
  private sort: MatSort;
  private reportingSort: MatSort;

  @ViewChild(MatSort) set matSort(ms: MatSort) {
    this.sort = ms;
    this.reportingSort = ms;
    this.setDataSourceAttributes();
  }

  @ViewChild(MatPaginator) set matPaginator(mp: MatPaginator) {
    this.paginator = mp;
    this.reportingPaginator = mp;
    this.setDataSourceAttributes();
  }

  setDataSourceAttributes() {

      this.dataSource.paginator = this.paginator;
      this.dataSource.sort = this.sort;

      this.reportingDataSource.paginator = this.reportingPaginator;
      this.reportingDataSource.sort = this.reportingSort;

}
Depressed Dingo

Wielokrotne paginację materiał kątowy

@ViewChild(MatPaginator) set matPaginator(mp: MatPaginator) {
    this.paginator = mp;
    this.setDataSourceAttributes();
}
Depressed Dingo

Wielokrotne paginację materiał kątowy

@ViewChild(MatPaginator) set matPaginator(mp: MatPaginator) {
    this.reportingPaginator = mp;
    this.setDataSourceAttributes();
}
Depressed Dingo

Odpowiedzi podobne do “Wielokrotne paginację materiał kątowy”

Pytania podobne do “Wielokrotne paginację materiał kątowy”

Więcej pokrewnych odpowiedzi na “Wielokrotne paginację materiał kątowy” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu