mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
52 lines
1.5 KiB
HTML
52 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>jQuery UI Sortable - Dropping on empty lists</title>
|
|
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
|
<link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
|
|
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
|
|
<script type="text/javascript" src="../../ui/ui.core.js"></script>
|
|
<script type="text/javascript" src="../../ui/ui.sortable.js"></script>
|
|
<style type="text/css">
|
|
ul { list-style-type: none; margin: 0; padding: 0; float: left; margin-right: 10px; background: #eee; padding: 5px; width: 133px;}
|
|
li { margin: 3px; padding: 2px; width: 120px; }
|
|
</style>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
$("ul.droptrue").sortable({
|
|
connectWith: ['ul']
|
|
});
|
|
|
|
$("ul.dropfalse").sortable({
|
|
connectWith: ['ul'],
|
|
dropOnEmpty: false
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<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" />
|
|
|
|
</body>
|
|
</html>
|