Is there any way to dynamically change event template in FullCalendar?
Update. What I want is to specify new event html (e. g. in eventRender callba
Use the eventRender(callback) function to change the event template. Here is how you can add a tip to the event:
eventRender: function(event, element, view) {
element.qtip({
content: event.description
});
}
With this function you can fully customize any detail of the event that is displayed including adding a complete new event template. For more details check out the documentation: http://fullcalendar.io/docs/event_rendering/eventRender/