skip to Main Content

I have table that uses, angular material. I have also added matSort on the table. I could see that first column of my table is not sorting any idea? – Html

TS : ngOnChanges() { this.dataSource = new MatTableDataSource<Data>(this.someData); //work order data this.dataSource.paginator = this.paginator; this.dataSource.sort = this.sort; } HTML : <table mat-table [dataSource]="dataSource" matSort> <!-- column which does not sort is : --> <ng-container matColumnDef="Name"> <th mat-header-cell *matHeaderCellDef mat-sort-header> Name…

VIEW QUESTION
Back To Top
Search