I used to Telerik, but now I try use Syncfussion in my app(Xamarin Forms, Android).
I display the user events on the calendar. The problem is that the events can be a lot of, data are in the database, this adds the load time of the page.
Users do not like to wait :). So I use the following scheme:
- I cache brief information about the events in memory
SfCalendar has the ability to display events when you click(this was not in Telerik).
Now I want to use this user case:
1. I cache brief information about the events in memory and show it in SfCalendar.
2. When user click by data load detail information and show it. Is it possible?
To do this, I need to replace the data already received for the selected date.
Any ideas?