jquery-ui/demos/sortable/items.html

65 lines
1.9 KiB
HTML
Raw Normal View History

2012-09-10 15:33:46 +00:00
<!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>
<link rel="stylesheet" href="../../themes/base/all.css">
<script src="../../jquery.js"></script>
<script src="../../ui/core.js"></script>
<script src="../../ui/widget.js"></script>
<script src="../../ui/mouse.js"></script>
<script src="../../ui/sortable.js"></script>
2010-10-13 19:23:42 +00:00
<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
});
2013-01-17 06:28:41 +00:00
$( "#sortable1 li, #sortable2 li" ).disableSelection();
2008-12-30 15:51:51 +00:00
});
</script>
</head>
<body>
<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>
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>
2012-09-10 15:33:46 +00:00
</div>
2008-12-30 15:51:51 +00:00
</body>
</html>