I want to send a type in my Event Json Response.
Here is my code:
$(\'#calendar\').fullCalendar({ eventSources: [ {\"id\":\"46_l\",\"title\":\"Cus
In the new version you should do this:
eventRender: function (info) { info.el.firstChild.innerHTML = info.event.extendedProps.type + " " + info.event.extendedProps.customEventsClass; }