sortable helperMaker : UI Sortable « jQuery « JavaScript DHTML






sortable helperMaker

 
<!--
  jQuery UI Effects Blind 1.7.2
 
  Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
  Dual licensed under the MIT (MIT-LICENSE.txt)
  and GPL (GPL-LICENSE.txt) licenses.
 
 
-->
<!doctype html>
<html lang="en">
<head>
  <title>jQuery UI Sortable - Default functionality</title>
  <link type="text/css" href="js/themes/base/ui.all.css" rel="stylesheet" />
  <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
  <script type="text/javascript" src="js/ui/ui.core.js"></script>
  <script type="text/javascript" src="js/ui/ui.sortable.js"></script>
  <link type="text/css" href="js/demos.css" rel="stylesheet" />
  <style type="text/css">
  #sortable { list-style-type: none; margin: 0; padding: 0; width: 60%; }
  #sortable li { margin: 0 3px 3px 3px; padding: 0.4em; padding-left: 1.5em; font-size: 1.4em; height: 18px; }
  #sortable li span { position: absolute; margin-left: -1.3em; }
  </style>
  <script type="text/javascript">
  $(function() {
        var sortOpts = {
          helper: helperMaker
        };
        
        function helperMaker(e, ui) {
          
          return $("<div>").css({
            border:"4px solid #cccccc",
             opacity:"0.5"
          });
        }
  
      
        $("#sortable").sortable(sortOpts);
  });
  </script>
</head>
<body>
<div class="demo">

<ul id="sortable">
  <li class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span>Item 1</li>
  <li class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span>Item 2</li>
  <li class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span>Item 3</li>
  <li class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span>Item 4</li>
  <li class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span>Item 5</li>
  <li class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span>Item 6</li>
  <li class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span>Item 7</li>
</ul>

</div>

</body>
</html>

   
  








Related examples in the same category

1.jQuery UI Sortable - Default functionality
2.jQuery UI Sortable - Delay start
3.jQuery UI Sortable - Display as grid
4.jQuery UI Sortable - Handle empty lists
5.jQuery UI Sortable - Include / exclude items
6.jQuery UI Sortable - Drop placeholder
7.jQuery UI Sortable - Connect lists
8.jQuery UI Sortable - Connect lists with Tabs
9.jQuery UI Sortable - Portlets
10.Set containment to the container and distance to 30
11.sortable placeholder: "empty"
12.Sortable with place holder
13.Sortable update event
14.Placehoder, helper for sortable