Hello Goutham,
Greetings from Syncfusion support.
We have checked the reported issue and the cause of the issue is due to manipulating the DOM directly with template. Angular will not detect these changes and react properly always. To get rid of the issue, we suggest you to detect the changes explicitly as mentioned below code example.
Code Snippet :
|
constructor(private cd: ChangeDetectorRef) {
}
ngAfterViewChecked(){
this.cd.detectChanges();
}
|
Kindly integrate the provided solution in your application and get back to us if you need any further assistance on this.
Regards,
Jeyanth.