2008-12-30 15:51:51 +00:00
<!doctype html>
< html lang = "en" >
< head >
2009-01-16 22:51:33 +00:00
< title > jQuery UI Sortable - Include / exclude items< / title >
2009-01-07 02:36:51 +00:00
< link type = "text/css" href = "../../themes/base/ui.all.css" rel = "stylesheet" / >
2009-01-14 23:26:15 +00:00
< script type = "text/javascript" src = "../../jquery-1.3.js" > < / script >
2008-12-30 15:51:51 +00:00
< script type = "text/javascript" src = "../../ui/ui.core.js" > < / script >
< script type = "text/javascript" src = "../../ui/ui.sortable.js" > < / script >
2008-12-31 06:29:31 +00:00
< link type = "text/css" href = "../demos.css" rel = "stylesheet" / >
2008-12-30 15:51:51 +00:00
< style type = "text/css" >
2008-12-31 06:29:31 +00:00
#sortable, #sortable2 { list-style-type: none; margin: 0; padding: 0; }
2009-01-04 09:20:45 +00:00
.demo li { margin: 5px; padding: 3px; font-size: 1.2em; }
2008-12-30 15:51:51 +00:00
< / style >
< script type = "text/javascript" >
$(function() {
2008-12-31 06:29:31 +00:00
$("#sortable").sortable({
2008-12-30 15:51:51 +00:00
items: 'li:not(.ui-state-disabled)'
});
2008-12-31 06:29:31 +00:00
$("#sortable2").sortable({
2008-12-30 15:51:51 +00:00
cancel: '.ui-state-disabled'
});
});
< / script >
< / head >
< body >
2008-12-31 14:17:03 +00:00
< div class = "demo" >
2008-12-30 15:51:51 +00:00
2009-01-16 22:51:33 +00:00
< h3 > Specify which items are sortable:< / h3 >
2008-12-30 15:51:51 +00:00
2008-12-31 06:29:31 +00:00
< ul id = "sortable" >
2008-12-30 15:51:51 +00:00
< li class = "ui-state-default" > Item 1< / li >
2009-01-16 22:51:33 +00:00
< li class = "ui-state-default ui-state-disabled" > (I'm not sortable or a drop target)< / li >
< li class = "ui-state-default ui-state-disabled" > (I'm not sortable or a drop target)< / li >
2008-12-30 15:51:51 +00:00
< li class = "ui-state-default" > Item 4< / li >
< / ul >
2009-01-16 22:51:33 +00:00
< h3 > Cancel sorting (but keep as drop targets):< / h3 >
2008-12-30 15:51:51 +00:00
2008-12-31 06:29:31 +00:00
< ul id = "sortable2" >
2008-12-30 15:51:51 +00:00
< li class = "ui-state-default" > Item 1< / li >
< li class = "ui-state-default ui-state-disabled" > (I'm not sortable)< / li >
< li class = "ui-state-default ui-state-disabled" > (I'm not sortable)< / li >
< li class = "ui-state-default" > Item 4< / li >
< / ul >
2008-12-31 14:17:03 +00:00
< / div > <!-- End demo -->
< div class = "demo-description" >
2009-01-16 22:51:33 +00:00
< p > Specify which items are eligible to sort by passing a jQuery selector into the < strong > items< / strong > option. Items excluded from this option are not sortable, nor are they valid targets for sortable items. < / p >
< p > To only prevent sorting on certain items, pass a jQuery selector into the < strong > cancel< / strong > option. Cancelled items remain valid sort targets for others.< / p >
2008-12-31 14:17:03 +00:00
< / div > <!-- End demo - description -->
2008-12-30 15:51:51 +00:00
< / body >
< / html >