mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-01-29 22:47:55 -05:00
demos: added connectToSortable demo for draggables
This commit is contained in:
@@ -22,6 +22,7 @@
|
||||
<li><a href="scroll.html">Scroll</a></li>
|
||||
<li><a href="snap.html">Snap</a></li>
|
||||
<li><a href="zindexstack.html">Z-Index / Stack</a></li>
|
||||
<li><a href="sortable.html">Connected to Sortable</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
41
demos/draggable/sortable.html
Normal file
41
demos/draggable/sortable.html
Normal file
@@ -0,0 +1,41 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>jQuery UI Sortable - Default Demo</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.draggable.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; margin-bottom: 10px; }
|
||||
li { margin: 3px; padding: 2px; width: 150px; }
|
||||
.ui-widget-header { margin-bottom: 10px; float: right; width: 100px; }
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
$("ul.sortable").sortable();
|
||||
$(".draggable").draggable({
|
||||
connectToSortable: ['ul'],
|
||||
helper: 'clone'
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<ul>
|
||||
<li class="ui-state-hover draggable">Drag me down</li>
|
||||
</ul>
|
||||
|
||||
<ul class="sortable">
|
||||
<li class="ui-state-default">Item 1</li>
|
||||
<li class="ui-state-default">Item 2</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>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user