views:

78

answers:

2

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.

A: 

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

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

perfect. Thanks

Arial
If you're satisfied with an answer, click the checkmark button next to it :)
theycallmemorty