Hi,
I have a basic SfCalendar defined in XAML with ShowInlineEvents="true" (and currently testing on Android).
After calling OnCalendarTapped, I try to add a new event to the Calendar's Data Source by doing the follow:
CalendarInlineEvent myEvent;
sfCalendar.OnCalendarTapped += (object sender, CalendarTappedEventArgs args) =>
{
DateTime date = args.datetime;
myEvent= new CalendarInlineEvent();
myEvent.StartTime = date;
myEvent.EndTime = date;
myEvent.Subject = "Go to Meeting";
myEvent.Color = Color.Blue;
sfCalendar.DataSource.Add(myEvent);
};
The issue is that nothing is being displayed, even though the event has been added to the Data Source (I have checked during runtime and it is properly working).
Bug or am I missing something out?
Cheers!
Francesco