Category / Section
How to overcome the infinite loop on method of property binding
1 min read
Issue replication step
The ‘workDays’ property is given by property binding usingthrough the method aslike below code. The Scheduler will be flickered and re-rendered multiple times.
- In src/app.component.html file.
[workDays]="getWorkDays()"
- In src/app.component.ts file.
public getWorkDays() { let workDays = [1,2,3]; return workDays; }
To prevent the Schedule re-rendering
- Need to import the ‘ChangeDetectionStrategy’ package from the ‘@angular/core’ in app.component.ts file as follows.like below.
import { Component, ChangeDetectionStrategy } from '@angular/core';
- Use ‘ChangeDetectionStrategy.OnPush’ as the followinglike below code snippet.
@Component({
selector: ‘app-root’,
providers: [WeekService, MonthService, ResizeService, DragAndDropService],
changeDetection: ChangeDetectionStrategy.OnPush
})
Please rRefer to the example from the following GitHub link.
Example – Scheduler with workDays property
Did not find the solution
Contact Support