Hi I'm having a problem displaying all day events in month view as also mentioned in this thread
https://www.syncfusion.com/forums/123190/showing-all-day-events-in-month-view .
That thread seemed to die out so perhaps I can give more information about the requirements.
When I create an all day event I do the following:
var calendarEvent = new CalendarInlineEvent
{
Subject = "Testing",
StartTime = new DateTime(2016, 5, 27, 0, 0, 0),
EndTime = new DateTime(2016, 5, 28, 0, 0, 0),
IsAllDay = true
};
So the start time is midnight of the day of the event and end time is midnight of the following day. This is based on the convention from Microsoft outlook:
https://msdn.microsoft.com/en-us/library/office/ff184629.aspx
However when I use this convention on SfSchedule the event is not displayed in the calendar. I suspect this is because the control is still using the start and end time.
This is also an issue on the SfCalendar.