@angular/material/sort#MatSort TypeScript Examples
The following examples show how to use
@angular/material/sort#MatSort.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ranking.component.ts From oss-github-benchmark with GNU General Public License v3.0 | 6 votes |
constructor(
private dataService: DataService,
private route: ActivatedRoute,
public dialog: MatDialog,
private location: Location,
fb: FormBuilder
) {
this.sort = new MatSort();
this.sectorFilters.forEach(
(sector: { sector: string; activated: boolean }) => {
if (sector.activated) {
this.checkboxes.push(sector.sector);
}
}
);
}
Example #2
Source File: account-struct.component.ts From assetMG with Apache License 2.0 | 5 votes |
@ViewChild(MatSort, { static: true }) sort: MatSort;
Example #3
Source File: ranking.component.ts From oss-github-benchmark with GNU General Public License v3.0 | 5 votes |
@ViewChild(MatSort) sort: MatSort;
Example #4
Source File: repositories-ranking.component.ts From oss-github-benchmark with GNU General Public License v3.0 | 5 votes |
@ViewChild(MatSort) sort: MatSort;
Example #5
Source File: user-ranking.component.ts From oss-github-benchmark with GNU General Public License v3.0 | 5 votes |
@ViewChild(MatSort) sort: MatSort;
Example #6
Source File: table.component.ts From material-reusable-table with Apache License 2.0 | 5 votes |
@ViewChild(MatSort, {static: true}) matSort: MatSort;
Example #7
Source File: users.component.ts From mysql_node_angular with MIT License | 5 votes |
@ViewChild(MatSort) sort: MatSort;
Example #8
Source File: wallet.component.ts From EXOS-Core with MIT License | 5 votes |
@ViewChild(MatSort, { static: true }) sort: MatSort;
Example #9
Source File: table.component.ts From geonetwork-ui with GNU General Public License v2.0 | 5 votes |
@ViewChild(MatSort, { static: true }) sort: MatSort
Example #10
Source File: explore-item.component.ts From oss-github-benchmark with GNU General Public License v3.0 | 5 votes |
@ViewChild(MatSort, { static: false }) sort: MatSort;
Example #11
Source File: stats-table.component.ts From zorro-fire-log with MIT License | 5 votes |
@ViewChild(MatSort, { static: true }) sort: MatSort;
Example #12
Source File: log-module.component.ts From 6PG-Dashboard with MIT License | 5 votes |
@ViewChild(MatSort) sort: MatSort;
Example #13
Source File: mat-table.component.ts From flingo with MIT License | 5 votes |
@ViewChild(MatSort, { static: false }) sort: MatSort;
Example #14
Source File: material-table.component.ts From matx-angular with MIT License | 5 votes |
@ViewChild(MatSort) sort: MatSort;
Example #15
Source File: sorting-table.component.ts From matx-angular with MIT License | 5 votes |
@ViewChild(MatSort) sort: MatSort;
Example #16
Source File: table-sorting.component.ts From matx-angular with MIT License | 5 votes |
@ViewChild(MatSort) sort: MatSort;
Example #17
Source File: room.component.ts From WiLearning with GNU Affero General Public License v3.0 | 5 votes |
@ViewChild(MatSort, {static: true}) sort: MatSort;
Example #18
Source File: list-requests.component.ts From yii-debug-frontend with BSD 3-Clause "New" or "Revised" License | 5 votes |
@ViewChild(MatSort, { static: true }) sort: MatSort;
Example #19
Source File: staking.component.ts From blockcore-hub with MIT License | 5 votes |
@ViewChild(MatSort, { static: true }) sort: MatSort;
Example #20
Source File: data-table.component.ts From worktez with MIT License | 5 votes |
@ViewChild(MatSort) sort!: MatSort;
Example #21
Source File: open.component.ts From svg-path-editor with Apache License 2.0 | 5 votes |
@ViewChild(MatSort) sort: MatSort | null = null;
Example #22
Source File: app.component.ts From nghacks with MIT License | 5 votes |
@ViewChild(MatSort, { static: true }) sort: MatSort;
Example #23
Source File: mat-table-query-reflector.component.ts From nghacks with MIT License | 5 votes |
@ViewChild(MatSort, { static: true }) sort: MatSort;
Example #24
Source File: oracle.component.ts From bitcoin-s-ts with MIT License | 5 votes |
@ViewChild(MatSort) sort: MatSort
Example #25
Source File: contacts.component.ts From bitcoin-s-ts with MIT License | 5 votes |
@ViewChild(MatSort) sort: MatSort
Example #26
Source File: contracts.component.ts From bitcoin-s-ts with MIT License | 5 votes |
@ViewChild(MatSort) sort: MatSort
Example #27
Source File: offers.component.ts From bitcoin-s-ts with MIT License | 5 votes |
@ViewChild(MatSort) sort: MatSort
Example #28
Source File: data-table-datasource.ts From worktez with MIT License | 5 votes |
sort: MatSort | undefined;
Example #29
Source File: wallet.component.ts From blockcore-hub with MIT License | 5 votes |
@ViewChild(MatSort, { static: true }) sort: MatSort;