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 65f60b5 commit 132ac0fCopy full SHA for 132ac0f
projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.ts
@@ -612,7 +612,7 @@ export class IgxTreeGridComponent extends IgxGridBaseDirective implements GridTy
612
$implicit: this.isGhostRecord(rowData) ? rowData.recordRef : rowData,
613
index: this.getRowIndex(rowIndex, pinned),
614
templateID: this.isSummaryRow(rowData) ? 'summaryRow' : 'dataRow',
615
- disabled: this.isGhostRecord(rowData)
+ disabled: this.isGhostRecord(rowData) ? rowData.recordRef.isFilteredOutParent === undefined : false
616
};
617
}
618
0 commit comments