How do I disable drag and drop in fullcalendar How do I disable drag and drop in fullcalendar javascript javascript

How do I disable drag and drop in fullcalendar


I know this is an old question, but nobody has answered this correctly, so here you go...

$('#example').fullCalendar({    disableDragging: true});


DisableDragging is replaced by: eventStartEditable (since version 1.6.3)

http://arshaw.com/fullcalendar/docs/removed/disableDragging/


You just need to set the disableDragging option to true when initializing your calendar.

$('#calendar').fullCalendar({    disableDragging = true});