Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I disable drag and drop in fullcalendar

I am using FullCalendar throughout my project and i need to display it in one area of my site where events are not draggable but to remain highlighted in the month view. Any ideas please.

like image 936
Arial Avatar asked Aug 18 '10 17:08

Arial


People also ask

How do I turn off past dates in Fullcalendar?

You can try the following thread's solution(dayClick or select function to disable the dayclick for the past dates in fullcalendar). You can visit the fullcalendar support center and post your fullcalendar question on the StackOverflow fullcalendar tag.

How do I uninstall Fullcalendar 12a?

To delete "12a", add displayEventTime: false . This is the correct answer.


2 Answers

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

$('#example').fullCalendar({     disableDragging: true }); 
like image 69
Scott Greenfield Avatar answered Oct 07 '22 16:10

Scott Greenfield


DisableDragging is replaced by: eventStartEditable (since version 1.6.3)

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

like image 29
JochemQuery Avatar answered Oct 07 '22 17:10

JochemQuery