Move objects with mouse
Move objects with mouse
I would like to have objects that user can move with mouse from place to place (like moving the cards between columns in Trello or GitHub projects). How do I approach this in Django?
2 Answers
2
You can do it with javascript, there's a good example in this link:
W3 Schools Code
And there's one simplier here : W3 Schools Code
This is handled using javascript. If you wanted to roll your own you could canvas or the draggable library
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.