swisnl / jQuery-contextMenu

jQuery contextMenu plugin & polyfill
https://swisnl.github.io/jQuery-contextMenu/
MIT License
2.25k stars 744 forks source link

Context Menu Titles #769

Open Andrewhuk47 opened 1 year ago

Andrewhuk47 commented 1 year ago

I have the contextmenu setup so that when I right click a table row I am able to retrieve the id of the item in the current row and perform actions based on the menu selection and the row ID.

Is it possible to update the menu title as setup in the docs below with data from the row that context menu was displayed on.

https://swisnl.github.io/jQuery-contextMenu/demo/menu-title.html

I can pull that data using this

var currentRow=$(this).closest("tr"); var usrname= 'User: ' + currentRow.find("td:eq(3)").text();

However I cannot seem to inject this into the menu title.

Can you help?