how do i display the end time of an even in fullcalendar? My event is triggered right, but there is no end time displayed This is an example event. Did i miss something?

title:'WM 2010 - 03.06.2010 - 00:00',
description: 'Bei uns ist jeden Tag WM Party',
start: new Date(2010, 5,  3, 00, 5),
end: new Date(2010, 6,  3, 23, 6),
allDay: true
link|improve this question
feedback

1 Answer

So I've snooped around in the source code and it seems it can be done like this:

timeFormat:  'HH:mm { - HH:mm}'

Where obviously the time between {} is the end time. If you don't specify the ending time between curly brackets it will just display the start time twice.

It's weird that the documentation doesn't really make this clear, but I guess you can't always trust the documentation.

Hope this helps!

link|improve this answer
feedback

protected by Community Nov 22 '11 at 20:22

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.