You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,34 @@
2
2
3
3
All notable changes for each version of this project will be documented in this file.
4
4
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.
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.
0 commit comments