Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery fullcalendar: contextmenu

I want to use jQuery.contextMenu:

http://abeautifulsite.net/blog/2008/09/jquery-context-menu-plugin

In jQuery.fullcalendar when I right-click on an event how does it work?

like image 452
Franky Avatar asked Aug 17 '10 10:08

Franky


1 Answers

i don't know the contextmenu plugin but i think you can bind it on the eventRender event of fullcalendar. I have the problem with dblClick on an event.

This is a part of my solution:

eventRender: function(event, element) {
    element.bind('dblclick', function() {
    dopbClickFunction(event,element);
    .......
like image 146
Sinderella_42 Avatar answered Oct 05 '22 23:10

Sinderella_42