-
-
Notifications
You must be signed in to change notification settings - Fork 298
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scroll to horizontally is not working #18
Comments
@azarzaza I have a board with a couple of boards out of viewport. In my case I enabled the x overflow to scroll the screen. I'll test some cases to try reproduce your issue. If you could send us a piece of your HTML which is doind that, it will be much appreciated. |
I've looking for a possible way to do that and came to JoshyFrancis/drag_auto_scroll. |
+1 not working for me too. |
If you are talking about dragging an item from one kanban board to another and wanting to horizontal scroll at the same time then this is also an issue for me. Will anyone come up with a fix? |
I'm trying to integrate JoshyFrancis/drag_auto_scroll with dragEl event of jKanban, but still no success. I'll keep trying to find any reasonable solution. Any help would be handy. |
Just came across this library and I like the idea of this functionality. If I get around to integrating this tool into my project, I'd definitely want this feature - happy to take a stab at this functionality at that time, but generally speaking, I think the logic required would need to: |
Any updates about implementing with JoshyFrancis/drag_auto_scroll? |
Great news! I've got a nice solution. Using this library: https://www.npmjs.com/package/dom-autoscroller var kanban = new jKanban({
dragBoards: false,
element:'#kanban',
});
autoScroll([
document.querySelector('.kanban-container')
],{
margin: 20,
maxSpeed: 5,
scrollWhenOutside: true,
autoScroll: function(){
//Only scroll when the pointer is down, and there is a child being dragged.
return this.down && kanban.drake.dragging;
}
}
); Works like a charm! |
Thank you so much @markitosgv If @riktar agreed, I can integrate dom-autoscroller inside jKanban in a pull request. |
@markitosgv I have tried to to add the dom-autoscroller (using your code snippet) to my jkanban-boards, but it did not work. Did you use the |
Hi @tnetsch , I'm using dist/dom-autoscroller.min.js after loading jkanban.min.js. |
Dragula has a problem about this. For now, I think the suggestion @markitosgv fits fine. |
Hello, thanks for solution,but, no charm with me... have a new solution today ?? |
Since original dragula's issue is currently open. I fear there's no solution yet. |
Thanks a lot for your answer, I'll wait the great solution ! |
With dragula not being maintained for the last few years, and with jkanban being built on top of it, maybe it's time to decouple/abstract it from the code and allow Sortable and others like html5 scrolling libs to be plugged in? I know it's built on dragula for most everything....but...there are at least two/maybe three real show-stopping scroll items in jkanban when trying to drag or scroll, even just in the drag container, both on regular laptops and on any mobile/touch device. Limits the use of this library, even as a bounty software. Cheers, |
try using autoScroll([ |
when we added board out of current viewport and then drag them over the last board it is not scrolling
The text was updated successfully, but these errors were encountered: