Hi Alfredo,
Greetings from Syncfusion support.
We have analyzed your requirement at our end. The actionComplete event in the Scheduler is triggered after the date or view navigation action got completed. So, you can perform your operation inside the actionComplete event with the condition of requestType of “dateNavigate” and “viewNavigate” like the below.
[app.component.html]
<ejs-schedule #schedule height='650px' [(selectedDate)]="selectedDate" [eventSettings]="eventSettings" (actionComplete)="onActionComplete($event)" (navigating)="onNavigation($event)"></ejs-schedule>
[app.component.ts]
onActionComplete(args: ActionEventArgs) {
if (args.requestType === 'dateNavigate' || args.requestType === 'viewNavigate') {
// You can write your code here.
alert('Navigation completed');
}
}
Kindly try the above sample and get in touch with us If you would need any further assistance.
Regards,
Ravikumar Venkatesan