Skip to content
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

Fix issue with drag and drop index positioning #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

jfrei
Copy link

@jfrei jfrei commented Jul 13, 2016

  • Fixes issue with data-bind: sortable element for a non-computed observable array. Dragging an item from a smaller index (eg 0) to a greater index (eg 10) places the element one position after the desired drop position (eg newIndex + 1).

Note: Has not been tested with dragging/dropping with more than one collection.

- Fixes issue with data-bind: sortable element for  a non-computed observable array. Dragging an item from a smaller index (eg 0) to a greater index (eg 10) places the element one position after the desired drop position (eg newIndex + 1).
@NoOutlet
Copy link

NoOutlet commented Jul 13, 2016

Actually, I'm finding that newIndex is always 0 at that point and so the fix isn't working for me, but I'm glad that someone is looking into it.

This seems to work for me, but isn't pretty:

140                 if (e.item.previousElementSibling) {
141                     newIndex = to().indexOf(ko.dataFor(e.item.previousElementSibling));
142                     newIndex += (newIndex > originalIndex ? 0 : 1);
143                 }

@jfrei
Copy link
Author

jfrei commented Jul 14, 2016

I've confirmed the code you've pasted above works and it looks better than what I've done 👍
Also, quick thanks for the plugin, saved me lots of time :)

Fix issue with newIndex always being 0
@matthewnitschke
Copy link

Yes! Been having the same problem and this fixed it, thank you. Can this please be merged into the master?

@crystalfp
Copy link

Yes, please! Merge it. It solved my last problem with knockout-sortable.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants