Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3450604
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T09:04:04+00:00 2026-05-18T09:04:04+00:00

I have a container with a list of draggable items and container with a

  • 0

I have a container with a list of draggable items and container with a list of sortable items. The draggables & the sortable list is connected, allowing the user to drag clones of the draggables to the sorted list.

The draggable items appear in a vertical list, however the sortable items appear in a horizontal list, achieved by floating them left. The container of the sortable items has its overflow set to auto, resulting in a horizontal scrollbar if the contents overflow. The two containers appear right next to each other, the draggables to the left & the sortables to the right.

The problem I’m experiencing is when the container of sortable items is scrolled to the right, dragging from the draggables’ container immediately fires the sortables’ events. It appears as if the contents of the sortables’ container is moved behind the draggables’ container.

Here is my code:

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
    <title>Sortables in scrollable divs</title>
    <script type="text/javascript" language="JavaScript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
    <script type="text/javascript" language="JavaScript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.min.js"></script>
    <script type="text/javascript" language="javascript">
        $(function() {
            $("#sortable").sortable({
                start: function(event, ui) {
                    if (ui.helper !== null) console.log("sortable \"" + ui.helper.text() + "\" drag start");
                },
                stop: function(event, ui) {
                    if (ui.helper !== null) console.log("sortable \"" + ui.helper.text() + "\" drag stopped");
                    if (ui.item !== null) console.log("sortable item \"" + ui.item.text() + "\" drag stopped");
                }
            });

            $("#sortable").sortable("disable");

            $("#draggable li").draggable({
                connectToSortable: '#sortable',
                helper: 'clone',
                revert: 'invalid',
                cursor: "default",
                cursorAt: { top: -5, left: -5 },
                start: function(event, ui) {
                    if (ui.helper !== null) console.log("draggable \"" + ui.helper.text() + "\" drag start");
                },
                stop: function(event, ui) {
                    if (ui.helper !== null) console.log("draggable \"" + ui.helper.text() + "\" drag stopped");
                }
            });

            $("#container2").mouseenter(function() {
                console.log("enter sortable container");
                $("#sortable").sortable("enable");
            }).mouseleave(function() {
                console.log("leaving sortable container");
                $("#sortable").sortable("disable");
            });

            $("#draggable, #sortable").disableSelection();
        });
    </script>
    <style type="text/css">
        html, body, p, td, th, li, input, select, option, textarea
        {
            font-family: Verdana, Arial, Helvetica, sans-serif;
            font-size: 11px;
            color:#343E41;
        }

        .wrapper
        {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            height: expression(this.parentNode.offsetHeight + "px");
        }

        .scroll-wrapper
        {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: auto;
            height: expression(this.parentNode.offsetHeight + "px");
        }

        #container1
        {
            float:left;
            width:200px;
            height:400px;
            overflow:auto;
            border:solid #000 1px;
            margin:5px;
        }

        #container2
        {
            float:left;
            width:600px;
            height:400px;
            overflow:auto;
            border:solid #000 1px;
            margin:5px;
        }

        ul#draggable
        {
            padding:0;
            margin:0;
            list-style-image:none;
            list-style-position:outside;
            list-style-type:none;
        }

        ul#draggable li
        {
            display:block;
            margin:5px;
            border:solid #000 1px;
            height:50px;
            width:150px;
        }

        ul#sortable
        {
            padding:0;
            margin:0;
            list-style-image:none;
            list-style-position:outside;
            list-style-type:none;
            height:380px;
            width:744px;
        }

        ul#sortable li
        {
            display:block;
            float:left;
            margin:5px;
            border:solid #000 1px;
            height:370px;
            width:50px;
            text-align:center;
        }
    </style>
</head>
<body>
    <form id="form1" action="">
        <div id="container1">
            <ul id="draggable">
                <li>1A</li>
                <li>2A</li>
                <li>3A</li>
                <li>4A</li>
                <li>5A</li>
                <li>6A</li>
                <li>7A</li>
                <li>8A</li>
                <li>9A</li>
                <li>10A</li>
                <li>11A</li>
                <li>12A</li>
            </ul>
        </div>
        <div id="container2">
            <ul id="sortable">
                <li class="ui-state-default">1</li>
                <li class="ui-state-default">2</li>
                <li class="ui-state-default">3</li>
                <li class="ui-state-default">4</li>
                <li class="ui-state-default">5</li>
                <li class="ui-state-default">6</li>
                <li class="ui-state-default">7</li>
                <li class="ui-state-default">8</li>
                <li class="ui-state-default">9</li>
                <li class="ui-state-default">10</li>
                <li class="ui-state-default">11</li>
                <li class="ui-state-default">12</li>
            </ul>
        </div>
    </form>
</body>

How can I avoid the sortable events to fire until the item is dragged over the sortable container?

Thanks in advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T09:04:05+00:00Added an answer on May 18, 2026 at 9:04 am

    It has been a long time since I posted this question and since then, new versions of jQuery & jQuery UI has been released.

    In addition, the development team of jQuery UI added an example of draggables connected with sortables, were added.

    So I have updated my original sample code above and modified it so that it maches my scenario. I wanted a horizontal scrolling sortable section that will automatically expand when new items have been added.

    My example below has resolved my issue and the code looks much cleaner & simpler:

    $(function () {
                $("#sortable").sortable({
                    revert: true,
                    start: function (event, ui) {
                        $(this).width($(this).width() + ui.helper.width() + 12);
                    },
                    stop: function (event, ui) {
                        var w = 0;
                        $(this).children("li").each(function () {
                            w += $(this).width() + parseInt($(this).css("margin-left")) + parseInt($(this).css("margin-right")) + 2;
                        });
                        $(this).width(w);
                    }
                });
    
                var w = 0;
                $("#sortable").children("li").each(function () {
                    w += $(this).width() + parseInt($(this).css("margin-left")) + parseInt($(this).css("margin-right")) + 2;
                });
                $("#sortable").width(w);
    
                $("#draggable li").draggable({
                    connectToSortable: "#sortable",
                    helper: "clone",
                    revert: "invalid"
                });
                $("ul, li").disableSelection();
            });
    html, body, p, td, th, li, input, select, option, textarea
                    {
                            font-family: Verdana, Arial, Helvetica, sans-serif;
                            font-size: 11px;
                            color:#343E41;
                    }
    
                    .wrapper
                    {
                            position: relative;
                            width: 100%;
                            height: 100%;
                            overflow: hidden;
                            height: expression(this.parentNode.offsetHeight + "px");
                    }
    
                    .scroll-wrapper
                    {
                            position: relative;
                            width: 100%;
                            height: 100%;
                            overflow: auto;
                            height: expression(this.parentNode.offsetHeight + "px");
                    }
    
                    #container1
                    {
                            float:left;
                            width:200px;
                            height:400px;
                            overflow:auto;
                            border:solid #000 1px;
                            margin:5px;
                    }
    
                    #container2
                    {
                            float:left;
                            width:600px;
                            height:400px;
                            overflow:auto;
                            border:solid #000 1px;
                            margin:5px;
                    }
    
                    ul#draggable
                    {
                            padding:0;
                            margin:0;
                            list-style-image:none;
                            list-style-position:outside;
                            list-style-type:none;
                    }
    
                    ul#draggable li
                    {
                            display:block;
                            margin:5px;
                            border:solid #000 1px;
                            height:50px;
                            width:150px;
                    }
    
                    ul#sortable
                    {
                            padding:0;
                            margin:0;
                            list-style-image:none;
                            list-style-position:outside;
                            list-style-type:none;
                            height:380px;
                    }
    
                    ul#sortable li
                    {
                            display:block;
                            float:left;
                            margin:5px;
                            border:solid #000 1px;
                            height:370px;
                            width:50px;
                            text-align:center;
                    }
               <script type="text/javascript" language="JavaScript" src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
            <script type="text/javascript" language="JavaScript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/jquery-ui.min.js"></script>
     
        <form id="form1" action="">
        <div id="container1">
        <ul id="draggable">
        <li>1A</li>
        <li>2A</li>
        <li>3A</li>
        <li>4A</li>
        <li>5A</li>
        <li>6A</li>
        <li>7A</li>
        <li>8A</li>
        <li>9A</li>
        <li>10A</li>
        <li>11A</li>
        <li>12A</li>
        </ul>
        </div>
        <div id="container2">
        <ul id="sortable">
        <li class="ui-state-default">1</li>
        <li class="ui-state-default">2</li>
        <li class="ui-state-default">3</li>
        <li class="ui-state-default">4</li>
        <li class="ui-state-default">5</li>
        <li class="ui-state-default">6</li>
        <li class="ui-state-default">7</li>
        <li class="ui-state-default">8</li>
        <li class="ui-state-default">9</li>
        <li class="ui-state-default">10</li>
        <li class="ui-state-default">11</li>
        <li class="ui-state-default">12</li>
        </ul>
        </div>
        </form>

    Thought someone, somewhere might like to do the same and needs some help 😀

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a page where i have a sortable list of items (a div
I have draggable list of < li > elements which I'm able to drag
I have these container objects (let's call them Container) in a list. Each of
I have one std::list<> container and these threads: One writer thread which adds elements
I have two classes: Media and Container. I have two lists List<Media> and List<Container>
So I have a custom ListView object. The list items have two textviews stacked
I have a div container with list in it, only one item of this
I have a list of draggables that need to be dropped onto divs loaded
I'm trying to have a list container with multiple columns (like you see in
I have a container class (subclassed from list) where I have overridden the geattr

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.