Hi,
I want to display appointments and additional info in date header such as weather just like the one in the demo here:
ASP.NET Core Scheduler Date Header Example - Syncfusion Demos
However, in the demo, weather data is hard coded. For actual usage scenario, where should I put ajax function to get the weather data for the current view?
For example in Month view, I want to get weather data for current month and when user navigate to other month, get weather data for the selected month and render it in date header.
I've tried using
navigating event to get weather data from server and renderCell event to add the weather info to date header but renderCell finished first before weather data is received in navigating event.