If an event start on a date and ends on some other date (say, next date). I want to show such events in allDay slot but don’t want to mark event.allDay = true;
Any idea how can I do this ?
If an event start on a date and ends on some other date (say,
Share
I modified the calendar code like this:
Find this method (for me it’s on line#4467)
In this method find the following check:
Replace it with this:
Now any events that span more than a day will be shown in allDay area even if they are not marked ‘allDay’
This was my requirement I had to do it like this. I mentioned it here in case anyone else come here searching a similar solution.