In Ignite UI for Angular Tree Grid, data sorting is enabled on a per-column level, meaning that the igx-tree-grid can have a mix of sortable and non-sortable columns. Performing angular sort actions enables you to change the display order of the records based on specified criteria.
Up until now, grouping/sorting worked in conjunction with each other. In 13.2 version, a new behavior which decouples grouping from sorting is introduced. For example - clearing the grouping will not clear sorting expressions in the grid or vice versa. Still, if a column is both sorted and grouped, grouped expressions take precedence.
最速で機能豊富な Angular Data Grid は、ページング、ソート、フィルタリング、グループ化、PDF および Excel へのエクスポートなどの機能を提供します。究極のアプリ構築エクスペリエンスとデータ操作に必要なすべてが揃っています。
Having a certain amount of sorted columns could be really confusing if there is no indication of the sorted order.
The IgxTreeGrid provides a solution for this problem by indicating the index of each sorted column.
Sorting through the API
You can sort any column or a combination of columns through the Tree Grid API using the Tree Grid sort method:
import { SortingDirection } from'igniteui-angular';
// import { SortingDirection } from '@infragistics/igniteui-angular'; for licensed package// Perform a case insensitive ascending sort on the ProductName column.this.treeGrid.sort({ fieldName: 'Name', dir: SortingDirection.Asc, ignoreCase: true });
// Perform sorting on both the ProductName and Price columns.this.treeGrid.sort([
{ fieldName: 'Name', dir: SortingDirection.Asc, ignoreCase: true },
{ fieldName: 'UnitPrice', dir: SortingDirection.Desc }
]);
typescript
Sorting is performed using our DefaultSortingStrategy algorithm. Any IgxColumnComponent or ISortingExpression can use a custom implementation of the ISortingStrategy as a substitute algorithm. This is useful when custom sorting needs to be defined for complex template columns, or image columns, for example.
As with the filtering behavior, you can clear the sorting state by using the clearSort method:
// Removes the sorting state from the ProductName columnthis.treeGrid.clearSort('Name');
// Removes the sorting state from every column in the Tree Gridthis.treeGrid.clearSort();
typescript
The sortStrategy of the Tree Grid is of different type compared to the sortStrategy of the column, since they work in different scopes and expose different parameters.
The sorting operation DOES NOT change the underlying data source of the Tree Grid.
Initial sorting state
It is possible to set the initial sorting state of the Tree Grid by passing an array of sorting expressions to the sortingExpressions property of the Tree Grid.
If values of type string are used by a column of dataTypeDate, the Tree Grid won't parse them to Date objects and using Tree Grid sorting won't work as expected. If you want to use string objects, additional logic should be implemented on an application level, in order to parse the values to Date objects.
Sorting Indicators Templates
The sorting indicator icon in the column header can be customized using a template. The following directives are available for templating the sorting indicator for any sorting state (ascending, descending, none):
IgxSortHeaderIconDirective – re-templates the sorting icon when no sorting is applied.
To get started with styling the sorting behavior, we need to import the index file, where all the theme functions and component mixins live:
@use"igniteui-angular/theming" as *;
// IMPORTANT: Prior to Ignite UI for Angular version 13 use:// @import '~igniteui-angular/lib/core/styles/themes/index';scss
Following the simplest approach, we create a new theme that extends the grid-theme and accepts the $sorted-header-icon-color and sortable-header-icon-hover-color parameters.
$custom-theme: grid-theme(
$sorted-header-icon-color: #ffb06a,
$sortable-header-icon-hover-color: black
);
scss
Instead of hardcoding the color values like we just did, we can achieve greater flexibility in terms of colors by using the palette and color functions. Please refer to Palettes topic for detailed guidance on how to use them.