Search code examples
javascriptjqueryfullcalendarrendering

fullCalendar - Event title and detail


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)


Solution

  • See This (Eureka's Answer)

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