Giter Club home page Giter Club logo

Comments (8)

mrieser avatar mrieser commented on July 26, 2024 8

I could try the new version out now, works very well, thanks again!

Just for a documentation purpose: Using <draggable element="ul"...>...</draggable> works just out of the box. But the following did not work:

<table>
  <thead>...</thead>
  <draggable element="tbody" ...>...</draggable>
</table>

I finally figured it out, and it's actually documented over at VueJS: https://vuejs.org/guide/components.html#DOM-Template-Parsing-Caveats. Basically, custom components cannot be used within <table>. But the workaround using is works:

<table>
  <thead>
    <th>Id</th>
    <th>Name</th>
  </thead>
  <tbody is="draggable" element="tbody" :list="items">
    <tr v-for="i in items">
      <td>{{i.id}}</td>
      <td>{{i.name}}</td>
    </tr>
  </tbody>
</table>

I just wanted to have this documented here, in case somebody ends up here after a quick internet search and tries to do the same as I did.

from vue.draggable.

David-Desmaisons avatar David-Desmaisons commented on July 26, 2024

Good suggestion! I will work on it!

from vue.draggable.

David-Desmaisons avatar David-Desmaisons commented on July 26, 2024

added element prop in version 2.2.0.

from vue.draggable.

mrieser avatar mrieser commented on July 26, 2024

cool, thanks for the fast work!

from vue.draggable.

David-Desmaisons avatar David-Desmaisons commented on July 26, 2024

@mrieser Thanks for documenting this!

from vue.draggable.

JeffB1 avatar JeffB1 commented on July 26, 2024

You should consider adding this to either the readme.md or as a sample. I struggled with this for a while until I found this issue and then it worked straight away. Happy days now!!!

from vue.draggable.

David-Desmaisons avatar David-Desmaisons commented on July 26, 2024

@JeffB1 I would have to take a look deeper to this to really understand it and add it to readme.md.
Please open a PR with the updates you are suggesting so I can review and merge them

from vue.draggable.

ultmaster avatar ultmaster commented on July 26, 2024

I don't know why, but using <draggable element="tbody"... > (as demonstrated in documentation) does not work, while <tbody is="draggable" ...> works. There is nothing wrong with data presentation, only the "drag" does not work!

P.S. All JSFiddle in vue-draggable does not work on my machine. I am not sure whether it is a network problem, or a machine-related problem...

from vue.draggable.

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.