Questions tagged [jquery-ui-contextmenu]

A jQuery plugin that provides a context menu (based on the standard jQueryUI menu widget).

jQueryUI Contextmenu is a jQuery plugin that provides a context menu (based on the standard jQueryUI menu widget).

Some major features of the plugin are:

  • Define menus from <ul> element or definition list (i.e. [{title: "Paste", cmd: "paste"}, ...]).
  • Themable using jQuery ThemeRoller.
  • Supports delegation (i.e. can be bound to elements that don't exist at the time the context menu is initialized).
  • Optional support for touch devices.

More information can be found at the github page.

22 questions
0
votes
0 answers

Javascript libraries conflict

I have a web page that uses this JS libraries: calendar_en.js --- (www.dhtmlgoodies.com, v2.1.2) jquery-min.js --- (jQuery v3.2.1) jquery-migrate-3.0.1.min.js jquery-ui.min.js --- (jQuery UI - v1.12.1) jquery.ui-contextmenu.min.js --- (jQuery UI…
Fel
  • 4,428
  • 9
  • 43
  • 94
0
votes
1 answer

JQuery Context-menu assimilation with FullCalendar

I'm dealing with Martin Wendt's jQuery Context-menu plugin and I'm trying to integrate it in my FullCalendar plugin. The issue is that nothing happens on right-clicking on the event. So, no context-menu pops-out. I got the following jquery code in…
0
votes
1 answer

fetch data on selected row using contextmenu

I want to edit/delete data in a row within a table by using the Jquery contextmenu onclick event. The problem is when i click in a row the last row will be fetched rather than on the selected row. table:
Larigyn
  • 115
  • 1
  • 2
  • 12
0
votes
1 answer

Keep menu from closing when using touch events

I have hooked up a simple long touch function that after 500ms uses the "open" API command to open the context menu. The menu opens. However, on "touchend" the menu disappears. It only stays if I touchmove over the context menu before "touchend". Is…
Simon
  • 66
  • 1
  • 1
  • 4
0
votes
2 answers

Reinitialize or check to see if menu is initialized

I am having an issue where I initialize the context menu on a grid, and it works but I have another function on the page that when clicked hides the grid, when I bring the grid back the menu no longer works, I am thinking that maybe re-initializing…
Devnsyde
  • 1,297
  • 1
  • 13
  • 34
0
votes
1 answer

jquery contextMenu add custom class

I'm using the jquery contextmenu plugin, and try to add a custom class to meny entry. I push entry in a tab like this : var tab=[]; classCss="myCustomClass"; tab.push({ title: "Menu entry 1", action: function(event, ui){ …
user3469203
  • 537
  • 1
  • 9
  • 22
0
votes
2 answers

jQuery Ui Context menu dereference the id

How can I retreive the ids of contexts menu just like in https://github.com/mar10/jquery-ui-contextmenu/blob/master/README.md, but with additionally provided IDs
1
2