How can I show a recurring event in which the end time exceeds the current day?
Here's a sample data:
const data = {
id: 1,
title: "ABC",
startRecur: "2020-06-11T16:00:00.000Z",
startTime: "23:00:00",
endTime: "03:00:00",
daysOfWeek: ["5"]
};
calendar.addEventSource({
events: [data]
});
Basically the start time is 11:00 PM
and should end the next day 3:00 AM
. How will I let fullcalendar
know that it should end the next day? Take note that this is a recurring event.
Here's what it looks like in month view:
and in week view (event not rendered because it thinks that end time is 3 AM of same day):
I want it to look like this (google calendar)
UPDATE: Got it working using the rrule plugin