I am pretty convinced that managing context menus on mobile devices is impossible so I am looking for alternatives. The context menus I use on desktop applications range anywhere between 3-5 and I might need that many for my mobile development. Any suggestions/ideas would be appreciated.
Hello,
you may try to show popup on LongTouch event:
docs.dhtmlx.com/touch/doku.php?i … uch_events
$$("myList").attachEvent("onLongTouch",function(start,end){
var itemId = this.locate(start.target);
...
});