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 21f1adc commit f9ec7e5Copy full SHA for f9ec7e5
projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.ts
@@ -628,7 +628,7 @@ export class IgxTreeGridComponent extends IgxGridBaseDirective implements GridTy
628
$implicit: rowData,
629
index: rowIndex,
630
templateID: this.isSummaryRow(rowData) ? 'summaryRow' : 'dataRow',
631
- disabled: this.isGhostRecord(rowData.data)
+ disabled: this.isSummaryRow(rowData) ? false : this.isGhostRecord(rowData.data)
632
};
633
}
634
0 commit comments