I'm having some difficults with sortable option handle.

When I use:

$("table tr").sortable().disableSelection();

There is no problem.

If I add the handle option then the sortable stops working:

$("table tr").sortable({
    handle: "td:eq(0)"
}).disableSelection();

The links:

http://jsfiddle.net/22C2n/

http://jsfiddle.net/22C2n/1/

Can anyone help me please?

link|improve this question

feedback

3 Answers

up vote 9 down vote accepted

Wrap your < tr >'s in a < tbody > and change the your code to:

$("table tbody").sortable({
    handle: 'td:first'
}).disableSelection();

You specify the container that contains the elements you want to be sortable not the actual elements....

link|improve this answer
feedback

Try to pass an element: http://jsfiddle.net/22C2n/5/

$("table tr").sortable({
    handle: $("td:eq(0)")
}).disableSelection();
link|improve this answer
thanks for the answer but the code does not work, at leas at chrome. – Diego Dec 17 '10 at 14:58
You can't move 1A? It-works-on-my-chrome ;-) – Reto Aebersold Dec 17 '10 at 15:01
Yes, i was trying with 6A. But still, 1B and 1C (also 1A after you drop it) are moved to the right.Also it is not sorting – Diego Dec 17 '10 at 15:10
feedback

Setting the handle to td:eq(0) makes only the first table cell sortable, all the rest of the cells are not. Try adding a span inside the td and use it as the handle (demo).

HTML

<table>
    <tr>
        <td><span>&bull;</span>1A</td>
        <td>1B</td>
        <td>1C</td>
    </tr>
    ...
</table>

Script

$("table tr").sortable({
    handle: "span"
}).disableSelection();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.