| Issue 1383: | Not working properly in touch scrren devices. | |
| 2 people starred this issue and may be notified of changes. | Back to list |
Plugins drag and drop functionality for particular time selection on single day option not work in touchscreen devices. It work well in desktop browsers.
May 30, 2012
#1
dips.kid...@gmail.com
Sep 6, 2012
I am also facing the same issue. I have also tried using the jquery touch punch plugin but I was still not able to select multiple cell in the month view of calendar. I had also posted this issue on stack but could not get any solution. here is the link to stack http://stackoverflow.com/questions/12244105/fullcalendar-multiple-cell-select-on-mobile-device
Aug 15, 2013
(No comment was entered for this change.)
Status:
Duplicate
Mergedinto: 724
Aug 21, 2015
Use touch punch for dragging events (add code in eventRender:
$.support.touch = 'ontouchend' in document;
if ($.support.touch) {
$(element).draggable();
}
for adding touch capabilities to daycells use another touch js file: https://github.com/joshgerdes/jquery.ui.touch
and add cell.addTouch() in dayRender
|
|
| ► Sign in to add a comment |