Introducing ReUI:Open-source UI components and apps built with React, Next.js and Tailwind CSS
Browse ReUI

Draggable still not working


Hello,

I followed the steps here: https://devs.keenthemes.com/question/draggable-demos-do-not-work

Unfortunately, draggable is still not working for me in my Django app.

This is how im trying to use it in my js:

var containers = document.querySelectorAll(".min-h-200px.draggable-zone");

if (containers.length === 0) {
console.log("No containers found");
return false;
} else {
console.log("Containers found: ", containers.length);
}

var swappable = new Draggable.Sortable(containers, {
draggable: ".draggable",
handle: ".draggable .draggable-handle",
mirror: {
//appendTo: selector,
appendTo: "body",
constrainDimensions: true
}
});


But in my browser console, I'm getting `Uncaught ReferenceError: Draggable is not defined.`

Also, when i remove the "Draggable" and just have

var swappable = new Sortable(containers, {
draggable: ".draggable",
handle: ".draggable .draggable-handle",
mirror: {
//appendTo: selector,
appendTo: "body",
constrainDimensions: true
}
});

I get `Uncaught ReferenceError: Sortable is not defined.`


Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(

Replies (6)


If your draggable functionality isn’t working, a few key troubleshooting steps might help:



  • Check Dependencies – Ensure you're using the correct version of jQuery, jQuery UI, or any other drag-and-drop library required for your framework.
  • Event Listeners & Conflicts – Some UI components might override draggable events, so inspect the console for errors and check for conflicting scripts.
  • CSS & Positioning – Elements with position: static may not work well with draggable behavior. Try using position: relative or absolute.
  • Container & Restrictions – If the draggable area is limited, verify that containment settings aren’t preventing movement.


If you're looking to build a seamless, high-performing web app, working with an experienced web app development company can help ensure smooth UI interactions and optimal performance.

What specific issue are you facing does the element not move at all, or is it behaving unpredictably? Let’s debug it together!

If your draggable functionality isn’t working, a few key troubleshooting steps might help:

✅ Check Dependencies – Ensure you're using the correct version of jQuery, jQuery UI, or any other drag-and-drop library required for your framework.
✅ Event Listeners & Conflicts – Some UI components might override draggable events, so inspect the console for errors and check for conflicting scripts.
✅ CSS & Positioning – Elements with position: static may not work well with draggable behavior. Try using position: relative or absolute.
✅ Container & Restrictions – If the draggable area is limited, verify that containment settings aren’t preventing movement.

If you’re building a scalable web app and need expert development support, a professional Web App Development Company https://www.cmarix.com/web-app-development.html can ensure smooth UI interactions and performance optimization.

What specific issue are you facing does the element not move at all, or is it behaving unpredictably? Let’s debug it together! 🚀



In the quest to streamline our company's technological infrastructure, finding a knowledgeable and efficient IT partner was crucial. I was fortunate enough to discover a company https://www.velvetech.com/ that offers a comprehensive suite of services from consulting to custom technology solutions. The level of detail and customization they provide in their offerings truly made a difference in how we approached our IT challenges.



is it possible to see their portfolio on the site?



Sorry for the delay. Great to hear that you figured it out! If you need further assistance, feel free to ask.


Deleted comment

Nevermind, I figured it out!


Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(
Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(