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 48fb85c commit 3170ec6Copy full SHA for 3170ec6
projects/igniteui-angular/src/lib/test-utils/grid-functions.spec.ts
@@ -1654,7 +1654,7 @@ export class GridSummaryFunctions {
1654
const summaries = GridSummaryFunctions.getAllVisibleSummaries(fix);
1655
const rowIndexes = [];
1656
summaries.forEach(summary => {
1657
- rowIndexes.push(Number(summary.attributes['data-rowindex']));
+ rowIndexes.push(Number(summary.nativeElement.attributes['data-rowindex'].value));
1658
});
1659
return rowIndexes.sort((a: number, b: number) => a - b);
1660
}
0 commit comments