I basically did:
$(document).ready(function() { $('#calendar').fullCalendar({ defaultView: 'agendaWeek', firstDay:1, allDaySlot:false, axisFormat: 'h(:mm)tt', slotMinutes: 15, defaultEventMinutes:45,
therefore my left side shows the time in 15 minute slots.
The problem is that ive sets the event to fire from 10:00 to 10:45 and shows the event, but it seems the event ends at 10:30.
I added a screenshot, the event on the left is set in json as:
array( 'id' => 333, 'title' => "John", 'start' => "May 5 2011 10:00:00", 'end' => "May 5 2011 10:45:00", 'url' => "http://yahoo.com/", 'allDay'=> false, 'color' => 'red',
and if you look at the screenshot,

I added a light blue background, where, it seems to me, the event should end, in the slot 10:45. Any suggestions?
Advo
source share