datetimepicker
datetimepicker copied to clipboard
Time is not selectable using mobile
Time is not selectable using mobile The date if it works but the time is not possible to select on mobile devices, tablet ..
Same problem :( Data works fine, but time is not selectable...
Same problem.
This continues to be a problem. Has anyone found a solution to this?
This issue seems to be exactly the same as issue #494 and perhaps even to do with pull request #110 . I have not yet tested either.
Same issue here
Hello, the Issue is that some Android devices, using this library, treats touch as touchmove or vice versa. I use touchstart and touchend event to determine how much touch was moved (by how many pixels) and depending on that, turning off scrolling if the move was lower than 3 px :) code:
var pbTouchStart;
timebox
.on('touchstart', 'div', function (event) {
pbTouchStart = event.originalEvent.touches[0].clientY;
})
.on('touchend', 'div', function (event) {
var diff = event.originalEvent.changedTouches[0].clientY - pbTouchStart;
if (diff > -3 && diff < 3) {
currentlyScrollingTimeDiv = false;
}
})