Right click from mobile
12 years ago.
I have a DayPilot scheduler which shows a ContextMenu on right click:
dp.contextMenu = new DayPilot.Menu({
items: [
{ text: "test1", onclick: function () { alert("Event value: " + this.source.value()); } },
{ text: "test2", onclick: function () { alert("Event text: " + this.source.text()); } } ]
Is there a way to show this context menu from a touchdevice with no physical "right-click"?
DayPilot