Unable to drag element between columns in a kanban format
See original GitHub issueI am unable to grad the divs across columns. I can sort them within the same column but unable to drag them outside of the area. This is my template.
<div class="column-bodies">
<div class="column-body" v-for="column in kanbanColumns"
:column-id="column.id">
<draggable v-model="flightObjects[column.text]" class="dragArea" :move="checkMove" :options="dragOptions">
<div class="flight" v-for="flight in flightObjects[column.text]" :key="flight.id">
<element-flight :flight="flight" :label="'kanban'"></element-flight>
</div>
</draggable>
</div>
</div>
flightObject is a computed function returning a property from data. Am I doing something wrong? Also not able to scroll while dragging an element to a column not on screen. Is that possible?
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Why can't i drag and drop issues between columns i...
For some reason I cannot drag the issues between columns on my Kanban board. The columns are set up correctly (i.e. there's 4...
Read more >[Kanban Board Sample] I can't Drag Issues among columns.
[Kanban Board Sample] I can't Drag Issues among columns. ... It seems that your implementation only moves the HTML elements, but the actual...
Read more >Drag and drop in JavaScript Kanban control - Syncfusion
Column drag and drop By default, all cards can be dragged and dropped across the columns and within the columns. You cannot drag...
Read more >Kanban w/ Draggable Cards in Angular :: Drag and Drop
In this tutorial, we create a Kanban Layout with Draggable Cards ... to be repositioned within their column or transferred between columns.
Read more >HTML 5 drag and drop API: A tutorial - LogRocket Blog
Finally, we update the Card component to display the data received from Column . // Card.vue <template> <div ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I had the draggable element on the main div and not in the separate columns. Just a mistake on placement of the element.
@demonmind can you please provide more information about what was the problem and how you solved it?