2012-09-10 15:33:46 +00:00
|
|
|
<!doctype html>
|
2009-01-16 22:51:08 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2010-10-13 19:23:42 +00:00
|
|
|
<meta charset="utf-8">
|
2009-01-16 22:51:08 +00:00
|
|
|
<title>jQuery UI Sortable - Connect lists</title>
|
2013-12-02 18:36:12 +00:00
|
|
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
2010-10-13 19:23:42 +00:00
|
|
|
<link rel="stylesheet" href="../demos.css">
|
|
|
|
<style>
|
2014-04-24 11:31:59 +00:00
|
|
|
#sortable1, #sortable2 {
|
|
|
|
border: 1px solid #eee;
|
|
|
|
width: 142px;
|
|
|
|
min-height: 20px;
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 5px 0 0 0;
|
|
|
|
float: left;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
#sortable1 li, #sortable2 li {
|
|
|
|
margin: 0 5px 5px 5px;
|
|
|
|
padding: 5px;
|
|
|
|
font-size: 1.2em;
|
|
|
|
width: 120px;
|
|
|
|
}
|
2009-01-16 22:51:08 +00:00
|
|
|
</style>
|
2015-07-01 03:09:22 +00:00
|
|
|
<script src="../../external/requirejs/require.js"></script>
|
2015-09-21 11:08:09 +00:00
|
|
|
<script src="../bootstrap.js" data-modules="disable-selection">
|
2010-10-13 19:23:42 +00:00
|
|
|
$( "#sortable1, #sortable2" ).sortable({
|
|
|
|
connectWith: ".connectedSortable"
|
2009-01-30 05:28:01 +00:00
|
|
|
}).disableSelection();
|
2009-01-16 22:51:08 +00:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<ul id="sortable1" class="connectedSortable">
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<ul id="sortable2" class="connectedSortable">
|
|
|
|
<li class="ui-state-highlight">Item 1</li>
|
|
|
|
<li class="ui-state-highlight">Item 2</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>
|
|
|
|
|
2010-10-13 19:23:42 +00:00
|
|
|
<div class="demo-description">
|
2009-01-20 13:12:22 +00:00
|
|
|
<p>
|
2009-02-01 01:06:42 +00:00
|
|
|
Sort items from one list into another and vice versa, by passing a selector into
|
2009-01-20 13:12:22 +00:00
|
|
|
the <code>connectWith</code> option. The simplest way to do this is to
|
|
|
|
group all related lists with a CSS class, and then pass that class into the
|
2009-02-01 01:06:42 +00:00
|
|
|
sortable function (i.e., <code>connectWith: '.myclass'</code>).
|
2009-01-20 13:12:22 +00:00
|
|
|
</p>
|
2012-09-10 15:33:46 +00:00
|
|
|
</div>
|
2009-01-16 22:51:08 +00:00
|
|
|
</body>
|
|
|
|
</html>
|