I’m having some difficulties displaying the menu on touch. inside my touch handling, I am trying to show my menu using the show command and it does not seem to work. Is there something I am doing wrong?
var menuA = new DayPilot.Menu({
//menu items here
});
dp.onEventClick = function(args) {
if (!!args.originalEvent.changedTouches) {
menuA.show(args.e);
}
else {
//do something else
}
};
This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.