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>
|
2013-12-02 18:36:12 +00:00
|
|
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
2010-10-13 19:23:42 +00:00
|
|
|
<link rel="stylesheet" href="../demos.css">
|
|
|
|
<style>
|
2009-03-03 09:35:30 +00:00
|
|
|
#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>
|
2015-07-01 03:09:22 +00:00
|
|
|
<script src="../../external/requirejs/require.js"></script>
|
2015-09-21 11:08:09 +00:00
|
|
|
<script src="../bootstrap.js" data-modules="disable-selection">
|
2010-10-13 19:23:42 +00:00
|
|
|
$( "#sortable1" ).sortable({
|
|
|
|
items: "li:not(.ui-state-disabled)"
|
2008-12-30 15:51:51 +00:00
|
|
|
});
|
2009-01-20 13:12:22 +00:00
|
|
|
|
2010-10-13 19:23:42 +00:00
|
|
|
$( "#sortable2" ).sortable({
|
|
|
|
cancel: ".ui-state-disabled"
|
2008-12-30 15:51:51 +00:00
|
|
|
});
|
2009-01-20 13:12:22 +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>
|
|
|
|
|
2009-01-20 13:12:22 +00:00
|
|
|
<h3 class="docs">Specify which items are sortable:</h3>
|
2008-12-30 15:51:51 +00:00
|
|
|
|
2009-01-20 13:12:22 +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>
|
|
|
|
|
2009-01-20 13:12:22 +00:00
|
|
|
<h3 class="docs">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>
|
|
|
|
|
2010-10-13 19:23:42 +00:00
|
|
|
<div class="demo-description">
|
2009-01-20 13:12:22 +00:00
|
|
|
<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>
|