Skip to content Skip to sidebar Skip to footer

FullCalendar EventClick Handler Does Not Work If Editable False

The jQuery fullCalendar plugin seems to have a problem in the editable mode in certain cases. If the eventClick handler is set and editable is true, than the eventClick function wi

Solution 1:

First I thought the jQuery version has something to do with it. Further testing did not confirm this hypothesis. It turns out that the click handler works only if you disable resizing with disableResizing:true, i.e. if editable is true (editable:true) then the click event is only triggered if resizing is disabled (disableResizing:true). Maybe the Resize and Click events influence each other somehow..


Solution 2:

It seems from the above that using jQuery 1.3.2 was causing this problem and a more recent version of jQuery will fix this issue.


Solution 3:

I also had the editable: true option and instead I fixed it by installing the jQuery UI modules:

  • Draggable (the Droppable module is not required)
  • Resizable

Post a Comment for "FullCalendar EventClick Handler Does Not Work If Editable False"