I am using kendo ui scheduler in dynamics 365 as an extensible control. The problem I am facing is when navigate to week view with around 200-250 events. It is taking 15-20 seconds which is not acceptable for client. Although I have tested the same scenario in simple .Net project and it is loading very fast. I am able to integrate all required functionalities except this. These below two lines are taking time to re-render scheduler in dynamics 365.
var scheduler = $("#scheduler").data("kendoScheduler");
scheduler.dataSource.read();//line#1
scheduler.view(scheduler.view().name);//line#2
I am using limited data regarding the selected date. So in reading and rendering it is taking 15-20 seconds for week view.
Regards,
Hassan (Software Engineer)