We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf0a036 commit 2c398ffCopy full SHA for 2c398ff
projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.pipes.ts
@@ -39,7 +39,8 @@ export class IgxTreeGridHierarchizingPipe implements PipeTransform {
39
flatData, 0, treeGridRecordsMap);
40
}
41
42
- grid.flatData = flatData;
+ grid.flatData = grid.transactions.enabled ?
43
+ flatData.filter(rec => !grid.transactions.getState(this.getRowID(primaryKey, rec))) : flatData;
44
grid.records = treeGridRecordsMap;
45
grid.rootRecords = hierarchicalRecords;
46
return hierarchicalRecords;
0 commit comments