aboutsummaryrefslogtreecommitdiffstats
path: root/demos/sortable/empty-lists.html
diff options
context:
space:
mode:
Diffstat (limited to 'demos/sortable/empty-lists.html')
-rw-r--r--demos/sortable/empty-lists.html60
1 files changed, 60 insertions, 0 deletions
diff --git a/demos/sortable/empty-lists.html b/demos/sortable/empty-lists.html
new file mode 100644
index 000000000..7c66515eb
--- /dev/null
+++ b/demos/sortable/empty-lists.html
@@ -0,0 +1,60 @@
+<!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" />
+ <script type="text/javascript" src="../../jquery-1.3.js"></script>
+ <script type="text/javascript" src="../../ui/ui.core.js"></script>
+ <script type="text/javascript" src="../../ui/ui.sortable.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ .demo ul { list-style-type: none; margin: 0; padding: 0; float: left; margin-right: 10px; background: #eee; padding: 5px; width: 143px;}
+ .demo li { margin: 5px; padding: 5px; font-size: 1.2em; width: 120px; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $("ul.droptrue").sortable({
+ connectWith: ['ul']
+ });
+
+ $("ul.dropfalse").sortable({
+ connectWith: ['ul'],
+ dropOnEmpty: false
+ });
+ });
+ </script>
+</head>
+<body>
+<div class="demo">
+
+<ul class='droptrue'>
+ <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>
+
+<ul class='dropfalse'>
+ <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>
+
+<ul class='droptrue'>
+</ul>
+
+<br clear="both" />
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Prevent all items in a list from being dropped into a separate, empty list using the <strong>dropOnEmpty</strong> option set to false. By default, sortable items can be dropped on empty lists.</p>
+
+</div><!-- End demo-description -->
+
+</body>
+</html>