@@ -2,25 +2,34 @@ import {LiveAnnouncer} from '@angular/cdk/a11y';
2
2
import { AfterViewInit , Component , ViewChild } from '@angular/core' ;
3
3
import { MatSort , Sort , MatSortModule } from '@angular/material/sort' ;
4
4
import { MatTableDataSource , MatTableModule } from '@angular/material/table' ;
5
+ import { MatButtonToggle , MatButtonToggleGroup } from '@angular/material/button-toggle' ;
6
+ import { MatButton } from '@angular/material/button' ;
5
7
6
- export interface PeriodicElement {
7
- name : string ;
8
- position : number ;
9
- weight : number ;
10
- symbol : string ;
8
+ export interface EmployeeData {
9
+ firstName : string ;
10
+ lastName : string ;
11
+ position : string ;
12
+ office : string ;
13
+ salary : number ;
11
14
}
12
- const ELEMENT_DATA : PeriodicElement [ ] = [
13
- { position : 1 , name : 'Hydrogen' , weight : 1.0079 , symbol : 'H' } ,
14
- { position : 2 , name : 'Helium' , weight : 4.0026 , symbol : 'He' } ,
15
- { position : 3 , name : 'Lithium' , weight : 6.941 , symbol : 'Li' } ,
16
- { position : 4 , name : 'Beryllium' , weight : 9.0122 , symbol : 'Be' } ,
17
- { position : 5 , name : 'Boron' , weight : 10.811 , symbol : 'B' } ,
18
- { position : 6 , name : 'Carbon' , weight : 12.0107 , symbol : 'C' } ,
19
- { position : 7 , name : 'Nitrogen' , weight : 14.0067 , symbol : 'N' } ,
20
- { position : 8 , name : 'Oxygen' , weight : 15.9994 , symbol : 'O' } ,
21
- { position : 9 , name : 'Fluorine' , weight : 18.9984 , symbol : 'F' } ,
22
- { position : 10 , name : 'Neon' , weight : 20.1797 , symbol : 'Ne' } ,
23
- ] ;
15
+
16
+ const MULTI_SORT_DATA : EmployeeData [ ] = [
17
+ { firstName : "Garrett" , lastName : "Winters" , position : "Accountant" , office : "Tokyo" , salary : 170750 } ,
18
+ { firstName : "Airi" , lastName : "Satou" , position : "Accountant" , office : "Tokyo" , salary : 162700 } ,
19
+ { firstName : "Donna" , lastName : "Snider" , position : "Customer Support" , office : "New York" , salary : 112000 } ,
20
+ { firstName : "Serge" , lastName : "Baldwin" , position : "Data Coordinator" , office : "Singapore" , salary : 138575 } ,
21
+ { firstName : "Thor" , lastName : "Walton" , position : "Developer" , office : "New York" , salary : 98540 } ,
22
+ { firstName : "Gavin" , lastName : "Joyce" , position : "Developer" , office : "Edinburgh" , salary : 92575 } ,
23
+ { firstName : "Suki" , lastName : "Burks" , position : "Developer" , office : "London" , salary : 114500 } ,
24
+ { firstName : "Jonas" , lastName : "Alexander" , position : "Developer" , office : "San Francisco" , salary : 86500 } ,
25
+ { firstName : "Jackson" , lastName : "Bradshaw" , position : "Director" , office : "New York" , salary : 645750 } ,
26
+ { firstName : "Brielle" , lastName : "Williamson" , position : "Integration Specialist" , office : "New York" , salary : 372000 } ,
27
+ { firstName : "Michelle" , lastName : "House" , position : "Integration Specialist" , office : "Sydney" , salary : 95400 } ,
28
+ { firstName : "Michael" , lastName : "Bruce" , position : "Javascript Developer" , office : "Singapore" , salary : 183000 } ,
29
+ { firstName : "Ashton" , lastName : "Cox" , position : "Junior Technical Author" , office : "San Francisco" , salary : 86000 } ,
30
+ { firstName : "Michael" , lastName : "Silva" , position : "Marketing Designer" , office : "London" , salary : 198500 } ,
31
+ { firstName : "Timothy" , lastName : "Mooney" , position : "Office Manager" , office : "London" , salary : 136200 } ,
32
+ ]
24
33
/**
25
34
* @title Table with sorting
26
35
*/
@@ -29,11 +38,11 @@ const ELEMENT_DATA: PeriodicElement[] = [
29
38
styleUrls : [ 'table-sorting-example.css' ] ,
30
39
templateUrl : 'table-sorting-example.html' ,
31
40
standalone : true ,
32
- imports : [ MatTableModule , MatSortModule ] ,
41
+ imports : [ MatTableModule , MatSortModule , MatButtonToggle , MatButtonToggleGroup , MatButton ] ,
33
42
} )
34
43
export class TableSortingExample implements AfterViewInit {
35
- displayedColumns : string [ ] = [ 'position ' , 'name ' , 'weight ' , 'symbol ' ] ;
36
- dataSource = new MatTableDataSource ( ELEMENT_DATA ) ;
44
+ displayedColumns : string [ ] = [ 'firstName ' , 'lastName ' , 'position ' , 'office' , 'salary '] ;
45
+ dataSource = new MatTableDataSource ( MULTI_SORT_DATA ) ;
37
46
38
47
constructor ( private _liveAnnouncer : LiveAnnouncer ) { }
39
48
0 commit comments