Giter Site home page Giter Site logo

Comments (4)

rniemeyer avatar rniemeyer commented on July 18, 2024

The sortable binding works best when the "template" is a single element. You will have better luck wrapping it with something like:

<div data-bind="sortable:items">
   <div>
       <div id="i1">item 1
          <div id="nested_div">nested</div>
       </div>
       <div id="i2">item 2</div>
   </div>
</div>

from knockout-sortable.

MattFriedman avatar MattFriedman commented on July 18, 2024

I see what you mean; in fact my template has a single element per item. The snippets I used were for illustration of the result.

So, if I look at your example from your comment I'd be able to drag nested_div out of its parent.

That's what I'm observing. Sorry, I don't have a test case. If needed I can probably get something going on jsfiddle.

from knockout-sortable.

rniemeyer avatar rniemeyer commented on July 18, 2024

Yes, if it is possible to get something in jsFiddle it would be helpful. I will try to see if this plugin can address the issue or if it at the very least needs to be a documentation point.

from knockout-sortable.

MattFriedman avatar MattFriedman commented on July 18, 2024

I was using:

sortable: {
                    options:{containment:$('#column-container'), items: 'div'},
                    data:items,
                    afterMove: afterMoveCallback.bind($data)
                }

so it was my bad. It was selecting all the divs, regardless of nesting. I added the parent level class of the items and now it works as expected.

This is what I have now.

sortable: {
                    options:{containment:$('#column-container'), items: 'div.item'},
                    data:items,
                    afterMove: afterMoveCallback.bind($data)
                }

So, not a bug I'm pretty sure.

Thanks,
Matt

from knockout-sortable.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.