Skip to content

Commit 1f4c554

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Update Changelog.
1 parent ea9baa6 commit 1f4c554

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,34 @@
22

33
All notable changes for each version of this project will be documented in this file.
44

5+
## 20.1.0
6+
7+
### New Features
8+
9+
- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
10+
- Introduced a new cell merging feature that allows you to configure and merge cells in a column based on same data or other custom condition, into a single cell.
11+
12+
It can be enabled on the individual columns:
13+
14+
```html
15+
<igx-column field="field" [merge]="true"></igx-column>
16+
```
17+
The merging can be configured on the grid level to apply either:
18+
- `onSort` - only when the column is sorted.
19+
- `always` - always, regardless of data operations.
20+
21+
```html
22+
<igx-grid [cellMergeMode]="'always'">
23+
</igx-grid>
24+
```
25+
26+
The default `cellMergeMode` is `onSort`.
27+
28+
The functionality can be modified by setting a custom `mergeStrategy` on the grid, in case some other merge conditions or logic is needed for a custom scenario.
29+
30+
It's possible also to set a `mergeComparer` on the individual columns, in case some custom handling is needed for a particular data field.
31+
32+
533
## 20.0.0
634

735
### General

0 commit comments

Comments
 (0)