2009-01-16 22:51:08 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>jQuery UI Sortable - Handle empty lists</title>
|
|
|
|
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
|
2010-01-27 12:29:43 +00:00
|
|
|
<script type="text/javascript" src="../../jquery-1.4.1.js"></script>
|
2009-09-17 10:39:12 +00:00
|
|
|
<script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
|
2009-12-16 22:20:18 +00:00
|
|
|
<script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
|
2009-12-22 19:51:24 +00:00
|
|
|
<script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script>
|
2009-09-17 10:39:12 +00:00
|
|
|
<script type="text/javascript" src="../../ui/jquery.ui.sortable.js"></script>
|
2009-01-16 22:51:08 +00:00
|
|
|
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
|
|
|
<style type="text/css">
|
2009-01-20 13:12:22 +00:00
|
|
|
#sortable1, #sortable2, #sortable3 { list-style-type: none; margin: 0; padding: 0; float: left; margin-right: 10px; background: #eee; padding: 5px; width: 143px;}
|
|
|
|
#sortable1 li, #sortable2 li, #sortable3 li { margin: 5px; padding: 5px; font-size: 1.2em; width: 120px; }
|
2009-01-16 22:51:08 +00:00
|
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
|
|
$("ul.droptrue").sortable({
|
2009-02-01 01:06:42 +00:00
|
|
|
connectWith: 'ul'
|
2009-01-16 22:51:08 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$("ul.dropfalse").sortable({
|
2009-02-01 01:06:42 +00:00
|
|
|
connectWith: 'ul',
|
2009-01-16 22:51:08 +00:00
|
|
|
dropOnEmpty: false
|
|
|
|
});
|
2009-03-02 12:10:59 +00:00
|
|
|
|
|
|
|
$("#sortable1, #sortable2, #sortable3").disableSelection();
|
2009-01-16 22:51:08 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="demo">
|
|
|
|
|
2009-01-20 13:12:22 +00:00
|
|
|
<ul id="sortable1" class='droptrue'>
|
2009-01-16 22:51:08 +00:00
|
|
|
<li class="ui-state-default">Can be dropped..</li>
|
|
|
|
<li class="ui-state-default">..on an empty list</li>
|
|
|
|
<li class="ui-state-default">Item 3</li>
|
|
|
|
<li class="ui-state-default">Item 4</li>
|
|
|
|
<li class="ui-state-default">Item 5</li>
|
|
|
|
</ul>
|
|
|
|
|
2009-01-20 13:12:22 +00:00
|
|
|
<ul id="sortable2" class='dropfalse'>
|
2009-01-16 22:51:08 +00:00
|
|
|
<li class="ui-state-highlight">Cannot be dropped..</li>
|
|
|
|
<li class="ui-state-highlight">..on an empty list</li>
|
|
|
|
<li class="ui-state-highlight">Item 3</li>
|
|
|
|
<li class="ui-state-highlight">Item 4</li>
|
|
|
|
<li class="ui-state-highlight">Item 5</li>
|
|
|
|
</ul>
|
|
|
|
|
2009-01-20 13:12:22 +00:00
|
|
|
<ul id="sortable3" class='droptrue'>
|
2009-01-16 22:51:08 +00:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
<br clear="both" />
|
|
|
|
|
|
|
|
</div><!-- End demo -->
|
|
|
|
|
|
|
|
<div class="demo-description">
|
|
|
|
|
2009-01-20 13:12:22 +00:00
|
|
|
<p>
|
|
|
|
Prevent all items in a list from being dropped into a separate, empty list
|
|
|
|
using the <code>dropOnEmpty</code> option set to <code>false</code>. By default,
|
|
|
|
sortable items can be dropped on empty lists.
|
|
|
|
</p>
|
2009-01-16 22:51:08 +00:00
|
|
|
|
|
|
|
</div><!-- End demo-description -->
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|