fullCalendar - Event title and detail

Pierre de LESPINAY picture Pierre de LESPINAY · Oct 13, 2010 · Viewed 40.2k times · Source

I'm using the pretty fullCalendar jQuery plugin.

I'd like to be able to have a title AND a detail on each event as in the screenshot below:

Here the details are the participants for each session. (overflow hidden on the detail)

Answer

orolo picture orolo · Oct 13, 2010

See This (Eureka's Answer)

eventRender: function(event, element)
{ 
    element.find('.fc-event-title').append("<br/>" + event.description); 
}