Skip to content Skip to sidebar Skip to footer

How To Update Fullcalendar Events

I am attempting to set up a FullCalendar application that enables updates to newly-created calendar events. I found a demo on Codepen that uses the eventClick callback to facilitat

Solution 1:

Here's the documentation: https://fullcalendar.io/docs/eventClick

event is an Event Object that holds the event’s information (date, title, etc).

jsEvent holds the jQuery event with low-level information such as click coordinates.

If you don't need access to the jQuery event in your eventClick, you can remove it.

eventClick: function(calEvent) { ... }

Post a Comment for "How To Update Fullcalendar Events"