Issue
I have this kendo dropdown list in Angular how do I sort this list?
I dont see any sort param for kendo-dropdownlist on kendo website.
https://stackblitz.com/edit/angular-m6pome-dfnigx
Solution
You can use orderBy (documentation):
public groupedData: GroupResult[] = groupBy(orderBy(this.source, [{ field: "name", dir: "asc" }]), [
{ field: "subcategory" }
]);
Fiddle: https://stackblitz.com/edit/angular-m6pome-w2dbsn
Answered By - David
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.