Hi all,

I just upgraded from an old Interface version (I don't know what it
was, but I downloaded it from the jQuery documentation website a few
weeks ago) to the latest release, v1.2. Now my sortable list has
stopped working properly.

Each of the portlets will now only drag once. The first drag for each
portlet works exactly as you'd expect, but as soon as you've initiated
a drag, it won't drag again. The other portlets will drag (until you
do them once too).

There are no javascript errors, and if I revert to the older interface
release (keeping the html exactly as shown below) the drag events work
as desired.

Any ideas?

Thanks for your help
Steve

        <div id="columns">
                <div class="column">

                        <div class="portlet">
                                <p>Test 1</p>
                        </div>

                        <div class="portlet">
                                <p>Test 2</p>
                        </div>

                        <div class="portlet">
                                <p>Test 3</p>
                        </div>

                </div>
                <div class="column"></div>
                <div class="column"></div>
        </div><!-- /.columns -->



                $('.column').Sortable(
                        {
                                accept: 'portlet',
                                helperclass: 'sort_placeholder',
                                opacity: 0.7,
                                tolerance: 'intersect'
                        }
                );

Reply via email to