jquery-ui/demos/sortable/items.html

71 lines
2.1 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2008-12-30 15:51:51 +00:00
<html lang="en">
<head>
2010-10-13 19:23:42 +00:00
<meta charset="utf-8">
2009-01-16 22:51:33 +00:00
<title>jQuery UI Sortable - Include / exclude items</title>
2010-10-13 19:23:42 +00:00
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
2012-08-13 13:19:09 +00:00
<script src="../../jquery-1.8.0.js"></script>
2010-10-13 19:23:42 +00:00
<script src="../../ui/jquery.ui.core.js"></script>
<script src="../../ui/jquery.ui.widget.js"></script>
<script src="../../ui/jquery.ui.mouse.js"></script>
<script src="../../ui/jquery.ui.sortable.js"></script>
<link rel="stylesheet" href="../demos.css">
<style>
#sortable1, #sortable2 { list-style-type: none; margin: 0; padding: 0; zoom: 1; }
#sortable1 li, #sortable2 li { margin: 0 5px 5px 5px; padding: 3px; width: 90%; }
2008-12-30 15:51:51 +00:00
</style>
2010-10-13 19:23:42 +00:00
<script>
2008-12-30 15:51:51 +00:00
$(function() {
2010-10-13 19:23:42 +00:00
$( "#sortable1" ).sortable({
items: "li:not(.ui-state-disabled)"
2008-12-30 15:51:51 +00:00
});
2010-10-13 19:23:42 +00:00
$( "#sortable2" ).sortable({
cancel: ".ui-state-disabled"
2008-12-30 15:51:51 +00:00
});
2010-10-13 19:23:42 +00:00
$( "#sortable1 li, #sortable2 li" ).disableSelection();
2008-12-30 15:51:51 +00:00
});
</script>
</head>
<body>
2008-12-31 14:17:03 +00:00
<div class="demo">
2008-12-30 15:51:51 +00:00
<h3 class="docs">Specify which items are sortable:</h3>
2008-12-30 15:51:51 +00:00
<ul id="sortable1">
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>
<h3 class="docs">Cancel sorting (but keep as drop targets):</h3>
2008-12-30 15:51:51 +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 -->
2010-10-13 19:23:42 +00:00
<div class="demo-description">
<p>
Specify which items are eligible to sort by passing a jQuery selector into
the <code>items</code> 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
<code>cancel</code> 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>