Skip to content

Commit dedc8d8

Browse files
Teodosia HristodorovaTeodosia Hristodorova
authored andcommitted
chore(*): fix failed tests
1 parent 6f05d55 commit dedc8d8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ All notable changes for each version of this project will be documented in this
99
- `IgxGrid`
1010
- Added support for exporting grouped data.
1111
- `IgxTreeGrid`
12-
- Added `multipleCascade` row selection mode. A cascading selection, resulting in the selection of all children in the tree below the record that the user selects with user interaction. In this mode when a parent has some selected and some deselected children, its checkbox is in an indeterminate state.
12+
- Added `multipleCascade` row selection mode. In this mode, selecting a record results in the selection of all its children recursively. When only some children are selected, their parent's checkbox is in an indeterminate state.
13+
1314

1415
```html
1516
<igx-tree-grid [rowSelection]="'multipleCascade'">

projects/igniteui-angular/src/lib/grids/grid-base.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2599,7 +2599,7 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
25992599
this._rowSelectionMode = selectionMode;
26002600
if (!this._init) {
26012601
this.selectionService.clearAllSelectedRows();
2602-
this.notifyChanges();
2602+
this.notifyChanges(true);
26032603
}
26042604
}
26052605

0 commit comments

Comments
 (0)