IPadやその他のタッチデバイスでjQuery-UIのソート可能な機能を使用するにはどうすればよいですか?
http://jqueryui.com/demos/sortable/
touchmove
およびscroll
イベントでevent.preventDefault();
、_event.cancelBubble=true;
_、およびevent.stopPropagation();
を使用しようとしましたが、結果はページはもうスクロールしません。
何か案は?
ソリューションが見つかりました(今までiPadでのみテストされていました!)!
http://touchpunch.furf.com/content.php?/sortable/default-functionality
sortable
をモバイルで動作させるには。 touch-punch を次のように使用しています:
_$("#target").sortable({
// option: 'value1',
// otherOption: 'value2',
});
$("#target").disableSelection();
_
ソート可能なインスタンスを作成した後、disableSelection();
を追加することに注意してください。
トム、次のコードをmouseProto._touchStartイベントに追加しました:
var time1Sec;
var ifProceed = false, timerStart = false;
mouseProto._touchStart = function (event) {
var self = this;
// Ignore the event if another widget is already being handled
if (touchHandled || !self._mouseCapture(event.originalEvent.changedTouches[0])) {
return;
}
if (!timerStart) {
time1Sec = setTimeout(function () {
ifProceed = true;
}, 1000);
timerStart=true;
}
if (ifProceed) {
// Set the flag to prevent other widgets from inheriting the touch event
touchHandled = true;
// Track movement to determine if interaction was a click
self._touchMoved = false;
// Simulate the mouseover event
simulateMouseEvent(event, 'mouseover');
// Simulate the mousemove event
simulateMouseEvent(event, 'mousemove');
// Simulate the mousedown event
simulateMouseEvent(event, 'mousedown');
ifProceed = false;
timerStart=false;
clearTimeout(time1Sec);
}
};