So I recently added a context menu to the events in my FullCalendar using jQuery contextMenu (http://abeautifulsite.net/blog/2008/09/jquery-context-menu-plugin/). It works beaut
For those who don't want to change plugins, to fix the issue with the context menu mangling the dragability I modified jquery.contextMenu.js
From:
$(this).mousedown( function(e) {
var evt = e;
evt.stopPropagation();
$(this).mouseup( function(e) {
e.stopPropagation();
var srcElement = $(this);
$(this).unbind('mouseup');
if (evt.button == 2) {
to
$(this).mousedown( function(e) {
var evt = e;
evt.stopPropagation();
$(this).mouseup( function(e) {
if (evt.button == 2) {
e.stopPropagation();
var srcElement = $(this);
$(this).unbind('mouseup');
This stops the context menu plugin from doing anything on a left click, only on right click.