I am looking for a solution to display more information in event.
For example in the DayView you see a event from 06:00 to 10:00.
I want to display a additio
I would recommend the use of the eventAfterRender callback instead of eventRender. Indeed if you use eventRender you might jeopardize the correct display of the events, in coffee script, it something like :
$("#calendar").fullCalendar
eventAfterRender: (event, element) ->
element.find('.fc-title').after(""+event.description+"")