We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
<draggable v-model="tableData" tag="tbody" item-key="guid" :multiDrag="true" multiDragKey="ctrl"> <template #item="{ element }"> <tr> <td>{{ element.id }}</td> <td>{{ element.name }}</td> <td>{{ element.sport }}</td> </tr> </template> </draggable>
<draggable v-model="tableData" tag="tbody" item-key="guid" :multiDrag="true" multiDragKey="ctrl">
<template #item="{ element }">
<tr>
<td>{{ element.id }}</td>
<td>{{ element.name }}</td>
<td>{{ element.sport }}</td>
</tr>
</template>
</draggable>
The lines are dragged, but when the key is released, only one line is moved in the end.
The text was updated successfully, but these errors were encountered:
I've got a fork that supports multidrag (https://github.com/david-mohr/vue.draggable.next/tree/multidrag), if there's interest, I can put together a PR
Sorry, something went wrong.
That would be great! I think many people would appreciate that a lot including me
@Nemnon @sadovsf multidrag support PR is here #153
No branches or pull requests
<draggable v-model="tableData" tag="tbody" item-key="guid" :multiDrag="true" multiDragKey="ctrl">
<template #item="{ element }">
<tr>
<td>{{ element.id }}</td>
<td>{{ element.name }}</td>
<td>{{ element.sport }}</td>
</tr>
</template>
</draggable>
The lines are dragged, but when the key is released, only one line is moved in the end.
The text was updated successfully, but these errors were encountered: