It would be nice to be able to sort on multiple columns.
The user can sort the grid with multiple columns at a time
The user can sort the grid with a single column
The app I'm working on has a requirement for multi-column sort. I've used other, non-angular, grids in the past and they have supported this.
Angular 4.3.6
Material 2.0.0-beta.10
Typescript 2.5.2
There's should actually be nothing stopping one from doing multi-column sorting; you would just need to swap out the current mdSort
directive (which holds the sort state) with a variant that has the state for multiple columns.
Ah, good to know. Still getting familiar with Angular. Thanks
@jscharett I was just thinking this would be nice myself, I will have to look into how mdSort runs etc it seems.
anyone has an example or a plunker implementation of the above suggestion?
@jelbourn I gave it a shot by providing a MultiSort
directive that extends MatSort
and uses a collection of active MatSortables
instead of a single one.
However, this method in MatSortHeader
, which controls whether a sort header is visible, requires a reimplementation of the header.
AFAIK it is not currently possible to extend a component while inheriting the decorator, so a reimplementation of MatSortHeader has to also reimplement the template, styles, animations, etc.
If I'm not missing something, this is quite a bit more involved than creating a MatSort
variant.
@willshowell thanks for giving that a try
@andrewseguin we need to change the matSort/sort-header to each conform to an interface that would allow for different sorting semantics
When this feature will be ready and available?
approximately
Any updates?
Is this planned anytime soon? Looks like there is nothing table related in the plan anymore..
I am thinking about changing this myself, since I need multi column sorting and this doesn't seem to be addressed any time soon. So the problem right now is interface which is essentially a value of sort.active and _sort.direction which are just strings.
I am thinking of either them being potentially an array (and add a check for it) - otherwise use current logic for backwards compatibility or alternatively have some new property with collection of tuples with id and direction and then have it work next to old properties which may become obsolete by this point.
Hi guys, any update on this thread ?
I have created a pull request with changes that add option to enable multi column sorting. I made it so it is as much backwards compatible as I could make it without adding additional properties.
We will see if it is fine as is or material team will want me to do some changes.
I have created a pull request with changes that add option to enable multi column sorting. I made it so it is as much backwards compatible as I could make it without adding additional properties.
We will see if it is fine as is or material team will want me to do some changes.
@relair please show the working of this feature on stackblitz.com please. i am new in angular
Hi guys, I'm waiting for this feature and expecting it to be included in the next release (after @relair PR and all the discussion), angular 8 / ivy (?). For the meantime I created this working project to ng-mat-multi-sort just to understand better this problem and have something workable for dev demos.
Is there any update on this?
Hi guys, I'm waiting for this feature and expecting it to be included in the next release (after @relair PR and all the discussion), angular 8 / ivy (?). For the meantime I created this working project to ng-mat-multi-sort just to understand better this problem and have something workable for dev demos.
How about sending a PR against this repo instead of maintaining another package/repository?
You can also just do something like this:
<tr>
<th matSort (matSortChange)="someMethod($event)" mat-sort-header="firstName">firstname</th>
<th matSort (matSortChange)="someMethod($event)" mat-sort-header="lastName">lastname</th>
<th matSort (matSortChange)="someMethod($event)" mat-sort-header="language">language</th>
</tr>
private sortingValues = { firstName: '', lastName: '', language: '' };
public someMethod(event: any): void {
this.sortingValues[event.active] = event.direction;
console.log(this.sortingValues);
// the rest you want to do...
}
You can also just do something like this:
<tr> <th matSort (matSortChange)="someMethod($event)" mat-sort-header="firstName">firstname</th> <th matSort (matSortChange)="someMethod($event)" mat-sort-header="lastName">lastname</th> <th matSort (matSortChange)="someMethod($event)" mat-sort-header="language">language</th> </tr> private sortingValues = { firstName: '', lastName: '', language: '' }; public someMethod(event: any): void { this.sortingValues[event.active] = event.direction; console.log(this.sortingValues); // the rest you want to do... }
Ok, what about arrows? I'm gues they calculated by angular inners? Any ways to have them alive?
You can also just do something like this:
<tr> <th matSort (matSortChange)="someMethod($event)" mat-sort-header="firstName">firstname</th> <th matSort (matSortChange)="someMethod($event)" mat-sort-header="lastName">lastname</th> <th matSort (matSortChange)="someMethod($event)" mat-sort-header="language">language</th> </tr> private sortingValues = { firstName: '', lastName: '', language: '' }; public someMethod(event: any): void { this.sortingValues[event.active] = event.direction; console.log(this.sortingValues); // the rest you want to do... }
Ok, what about arrows? I'm gues they calculated by angular inners? Any ways to have them alive?
Not sure what you mean? notice I added the "matSort" and call the method on each 'th', instead of adding them to the table, this way each column has their own arrow animations...
For normal shared use, you could do like in this example
Or do you mean something else by "alive"?
I had the same problem and since there is no progress here yet I decided to write my own package. It provides as little bit more than just mulitsorting, but maybe some of you adapt it to your needs.
Have fun.
Is is based on Francisco Arantes Rodrigues approach, great thanks to him!
I have created a pull request with changes that add option to enable multi column sorting. I made it so it is as much backwards compatible as I could make it without adding additional properties.
We will see if it is fine as is or material team will want me to do some changes.
i found the same issue , it is risolved or not , i'am currently using version 8
Hey guys, Great work with IVY. Now that it is released, can we get an ETA on this ? Thanks.
Hey everyone, it's been years AND Ivy is out now. Is there an ETA?
@chris2011 any idea?
Looks like the second I placed this I came across the multi-column sorting in the docs.
https://material.angular.io/components/table/overview#sorting
Where is the "multi-column sorting in the docs"? I cannot find anything about it.
Looks like the second I placed this I came across the multi-column sorting in the docs.
https://material.angular.io/components/table/overview#sorting
Could you please share the "multi-column" sorting in the docs?
Looks like the second I placed this I came across the multi-column sorting in the docs.
https://material.angular.io/components/table/overview#sorting
Hey everyone, it's been years AND Ivy is out now. Is there an ETA?
@Chris2011 any idea?
Am interested in get an update as well. This seems like a pretty commonly requested feature.
Hi found this package on npm https://github.com/Maxl94/ngx-multi-sort-table. hope this is useful.
Hey everyone, it's been years AND Ivy is out now. Is there an ETA?
@Chris2011 any idea?
Waiting for the update too..
Any update?
Hey @willkara I didn't see you mentioning me. Is there a reason why or was it a mistake?
Most helpful comment
When this feature will be ready and available?
approximately