[progress Communities] [progress Openedge Abl] Forum Post: Re: Scroll While Dragging

Status
Not open for further replies.
F

Famke Bergmans

Guest
Heyhey, The container isn't scrollable. The mouse now just leaves the container and goes straight into header with the draggable. Here's the chunk of code for the draggable, I haven't coded anything specificly for the container: $(".draggableTire").hover(function(){ $(".draggableTire").removeClass("dragTire"); $(this).addClass("dragTire"); $(".dragTire").kendoDraggable({ holdToDrag:true, hold:function(e){ $(".dragTire").css({"border":"3px solid orange","border-radius":"13px"}); }, hint:function(e){ return e.clone(); }, dragend:function(e){ $(".draggableTire").css({"border":"0px","border-radius":"0px"}); }, autoScroll:true, }).data("kendoDraggable").userEvents.minHold = 175; });

Continue reading...
 
Status
Not open for further replies.
Top