Issue 947: Events ending too early when 15 minute slotMinutes set
Status:  Done
Owner: ----
Closed:  May 2011
Reported by thyjo...@hotmail.co.uk, May 7, 2011
I have basically done:

$(document).ready(function() {
	
		$('#calendar').fullCalendar({
			defaultView: 'agendaWeek',
			firstDay:1,
			allDaySlot:false,
			axisFormat: 'h(:mm)tt',
			slotMinutes: 15,
			defaultEventMinutes:45,

so my left side shows times in 15 minute slots.

The problem is, ive set an event to run from 10:00am to 10:45 and it shows the event, but it appears the event ends at 10:30.

I've added a screenshot, the event on the left side is set in json like:
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',   // an option!
			'textColor'=> 'black' // an option!
		),

and if you look on the screenshot, ive added a light blue background where I think the event should end, on the 10:45 slot. Any suggestions?
screenshot.jpg
311 KB   View   Download
May 8, 2011
Project Member #1 adamrs...@gmail.com
this is intended behavior.. it shows the event stopping at the 10:45 line. this is just the way it has to be
Status: Done