File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
projects/igniteui-angular/src/lib/test-utils Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,8 @@ export let gridsubscriptions: Subscription [] = [];
2828export const setupGridScrollDetection = ( fixture : ComponentFixture < any > , grid : GridType ) => {
2929 gridsubscriptions . push ( grid . verticalScrollContainer . chunkLoad . subscribe ( ( ) => fixture . detectChanges ( ) ) ) ;
3030 gridsubscriptions . push ( grid . parentVirtDir . chunkLoad . subscribe ( ( ) => fixture . detectChanges ( ) ) ) ;
31+ gridsubscriptions . push ( grid . activeNodeChange . subscribe ( ( ) => grid . cdr . detectChanges ( ) ) ) ;
32+ gridsubscriptions . push ( grid . selected . subscribe ( ( ) => grid . cdr . detectChanges ( ) ) ) ;
3133} ;
3234
3335export const setupHierarchicalGridScrollDetection = ( fixture : ComponentFixture < any > , hierarchicalGrid : IgxHierarchicalGridComponent ) => {
You can’t perform that action at this time.
0 commit comments