jQuery fullcalendar: contextmenu

前端 未结 3 1881
遇见更好的自我
遇见更好的自我 2021-02-04 19:57

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

3条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-04 20:30

    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);
        .......
    

提交回复
热议问题