Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is my demo: http://jsfiddle.net/michelejs/PeS2D/560/

How can I stop the first <li> being draggable?

$(document).ready(function(e) {
$('li').removeClass('ui-corner-bottom');
$('ul')
    .addClass('ui-corner-top')
    .removeClass('ui-corner-all')
    .sortable({
        'containment': 'parent',
        'opacity': 0.6,
        update: function(event, ui) {
            alert("dropped");
        }
    });
});​

Thanks a lot.

share|improve this question

5 Answers

up vote 4 down vote accepted

You can use the option items in the .sortable() widget method. Combined with the jQuery selector gt(), you could easily get what you are looking for.

This works for me (jsFiddle example) :

$(document).ready(function(e) {
    $('li').removeClass('ui-corner-bottom');
    $('ul')
        .addClass('ui-corner-top')
        .removeClass('ui-corner-all')
        .sortable({
            'items': '>li:gt(1)',
            'containment': 'parent',
            'opacity': 0.6,
            update: function(event, ui) {
                alert("dropped");
            }
        });
});​
share|improve this answer

You can use the items property:

$(document).ready(function(e) {
    $('li').removeClass('ui-corner-bottom');
    $('ul')
        .addClass('ui-corner-top')
        .removeClass('ui-corner-all')
        .sortable({
            items: 'li:not(:first)',
            'containment': 'parent',
            'opacity': 0.6,
            update: function(event, ui) {
                console.log(ui)

            }
        });
});

http://jsfiddle.net/ppRJL/

share|improve this answer

try this. http://jsfiddle.net/PeS2D/561/

I added an extra class called header to the first li and then there is a function called cancel

to save people a click:

[Cancel] Prevents sorting if you start on elements matching the selector. Code examples: Initialize the sortable with the cancel option specified:

$( ".selector" ).sortable({ cancel: "a,button" });

Get or set the cancel option, after initialization:

// getter
var cancel = $( ".selector" ).sortable( "option", "cancel" );

// setter
$( ".selector" ).sortable( "option", "cancel", "a,button" );
share|improve this answer

Just read the documentation : http://api.jqueryui.com/sortable/#option-items

The items option allow you to specify a selector for sortables elements.

share|improve this answer

Fiddle: http://jsfiddle.net/PeS2D/562/

You can set it to be like this

$(document).ready(function(e) {
  $('li').removeClass('ui-corner-bottom');
  $('ul')
    .addClass('ui-corner-top')
    .removeClass('ui-corner-all')
    .sortable({
        'containment': 'parent',
        'opacity': 0.6,
        update: function(event, ui) {
            alert("dropped");
        },
    items: 'li[id!=heading]'  
    });
});​

then add an id to your first li

 <li data-role="list-divider" role="heading" id="heading">Re-order</li>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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