I am using the FullCalendar plugin for JQuery, and I am trying to create a recurring event that spans multiple days. In this instance I want a recurring event that starts at 10am Monday and ends at 3am Tuesday.
I have researched how to do recurring events, such as this, but I can't seem to get it to work across multiple days.
For example, creating a recurring event on the same day like this works fine:
{
start: '10:00',
end: '15:00',
dow: [1]
}
However, trying to span the event overnight doesn't work ( I mean Monday 10:00 to Tuesday 03:00 ):
{
start: '10:00',
end: '03:00',
dow: [1]
}
It just seems to create a 2-hour event.
Is it possible to do what I want? And if so, how?