This topic contains 2 replies, has 2 voices, and was last updated by clock84 6 years ago.
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.
jQuery UI Widgets › Forums › Scheduler › Context menu on mobile devices
Tagged: Context Menu, javascript scheduler, jquery scheduler, jqwidgets scheduler, mobile devices, scheduler
This topic contains 2 replies, has 2 voices, and was last updated by clock84 6 years ago.
In my contextMenu I have these options:
– Create
– Edit
– Delete
I need to be able to perform these action also with a mobile device so I found this page (https://www.jqwidgets.com/community/topic/context-menu-movile/) where you suggest to open the contextMenu in the appointmentClick event:
$(“#scheduler”).on(‘appointmentClick’, function(){
setTimeout(function(){$(“#scheduler”).jqxScheduler(‘openMenu’); },100);
})
With this solution I am able to see the context menu but I am not able to select any row from the context menu…. when I press on one row the menu closes.
Do you have any other solution?
Thank you in advance
Hello clock84,
The native scheduler’s behavior on mobile devices is to use double click to open edit appointment window and there is also a delete button. When you double click on empty cell a create appointment window is opened.
Is that behavior suitable for you or you want explicitly to use context menu on mobile devices?
Best Regards,
Todor
jQWidgets Team
https://www.jqwidgets.com
I’m not using your edit appointment window but I am using a custom one.
That is the reason I was trying to use the context menu but actually I can add a delete button inside my window (as you suggested).
Thanks for your reply.
You must be logged in to reply to this topic.