2008-12-30 15:51:51 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2008-12-31 22:16:02 +00:00
|
|
|
<title>jQuery UI Sortable - Dropping on Empty Lists Demo</title>
|
2009-01-07 02:36:51 +00:00
|
|
|
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
|
2009-01-14 23:26:15 +00:00
|
|
|
<script type="text/javascript" src="../../jquery-1.3.js"></script>
|
2008-12-30 15:51:51 +00:00
|
|
|
<script type="text/javascript" src="../../ui/ui.core.js"></script>
|
|
|
|
<script type="text/javascript" src="../../ui/ui.sortable.js"></script>
|
2008-12-31 06:29:31 +00:00
|
|
|
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
2008-12-30 15:51:51 +00:00
|
|
|
<style type="text/css">
|
2009-01-04 09:20:45 +00:00
|
|
|
.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; }
|
2008-12-30 15:51:51 +00:00
|
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
|
|
$("ul.droptrue").sortable({
|
|
|
|
connectWith: ['ul']
|
|
|
|
});
|
2008-12-31 01:20:50 +00:00
|
|
|
|
2008-12-30 15:51:51 +00:00
|
|
|
$("ul.dropfalse").sortable({
|
|
|
|
connectWith: ['ul'],
|
|
|
|
dropOnEmpty: false
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2008-12-31 14:17:03 +00:00
|
|
|
<div class="demo">
|
2008-12-30 15:51:51 +00:00
|
|
|
|
|
|
|
<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" />
|
|
|
|
|
2008-12-31 14:17:03 +00:00
|
|
|
</div><!-- End demo -->
|
|
|
|
|
|
|
|
<div class="demo-description">
|
|
|
|
|
|
|
|
<p>
|
2008-12-31 23:10:48 +00:00
|
|
|
|
2008-12-31 14:17:03 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
</div><!-- End demo-description -->
|
|
|
|
|
2008-12-30 15:51:51 +00:00
|
|
|
</body>
|
|
|
|
</html>
|