how can I disable the gestures in Object when I have a custom MouseDown - MouseMove - MouseUp functions
I have a popup form, within which I can scroll with MausMove such a self-made list.
(MouesDown start move / MouseMove scroll List / MouseEnd end move)
when I do this on the PC with the mouse, it works fine.
If I do it on a device with touch, the whole form (including popup) always moves.
If I deactivate the functions "Touch" (see below) I don't get a mouseUp / Down etc. anymore.
el.ontouchstart = function() { return false; };
el.ontouchmove = function() { return false; };
el.ontouchend = function() { return false; };
el.ontouchcancel = function() { return false; };
now how can i disable this form gesture so that i can scroll my listescroll without the form moving?