2008-12-30 15:51:51 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2009-01-16 22:51:33 +00:00
|
|
|
<title>jQuery UI Sortable - Drop placeholder</title>
|
2009-01-07 02:36:51 +00:00
|
|
|
<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>
|
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">
|
2008-12-31 23:10:48 +00:00
|
|
|
#sortable { list-style-type: none; margin: 0; padding: 0; width: 60%; }
|
2009-01-27 15:36:10 +00:00
|
|
|
#sortable li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; height: 1.5em; }
|
2009-01-20 13:12:22 +00:00
|
|
|
html>body #sortable li { height: 1.5em; line-height: 1.2em; }
|
|
|
|
.ui-state-highlight { height: 1.5em; line-height: 1.2em; }
|
2008-12-30 15:51:51 +00:00
|
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
2008-12-31 06:29:31 +00:00
|
|
|
$("#sortable").sortable({
|
2008-12-30 15:51:51 +00:00
|
|
|
placeholder: 'ui-state-highlight'
|
|
|
|
});
|
2009-03-02 12:10:59 +00:00
|
|
|
$("#sortable").disableSelection();
|
2008-12-30 15:51:51 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2008-12-31 14:17:03 +00:00
|
|
|
<div class="demo">
|
2008-12-30 15:51:51 +00:00
|
|
|
|
2008-12-31 06:29:31 +00:00
|
|
|
<ul id="sortable">
|
2008-12-30 15:51:51 +00:00
|
|
|
<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>
|
|
|
|
<li class="ui-state-default">Item 6</li>
|
|
|
|
<li class="ui-state-default">Item 7</li>
|
|
|
|
</ul>
|
|
|
|
|
2008-12-31 14:17:03 +00:00
|
|
|
</div><!-- End demo -->
|
|
|
|
|
|
|
|
<div class="demo-description">
|
|
|
|
|
2009-01-20 13:12:22 +00:00
|
|
|
<p>
|
|
|
|
When dragging a sortable item to a new location, other items will make room
|
|
|
|
for the that item by shifting to allow white space between them. Pass a
|
|
|
|
class into the <code>placeholder</code> option to style that space to
|
|
|
|
be visible. Use the boolean <code>forcePlaceholderSize</code> option
|
|
|
|
to set dimensions on the placeholder.
|
|
|
|
</p>
|
2008-12-31 14:17:03 +00:00
|
|
|
|
|
|
|
</div><!-- End demo-description -->
|
|
|
|
|
2008-12-30 15:51:51 +00:00
|
|
|
</body>
|
|
|
|
</html>
|