jQuery UI Tab with list : UI Tab « jQuery « JavaScript Tutorial

Home
JavaScript Tutorial
1.Language Basics
2.Operators
3.Statement
4.Development
5.Number Data Type
6.String
7.Function
8.Global
9.Math
10.Form
11.Array
12.Date
13.Dialogs
14.Document
15.Event
16.Location
17.Navigator
18.Screen
19.Window
20.History
21.HTML Tags
22.Style
23.DOM Node
24.Drag Drop
25.Object Oriented
26.Regular Expressions
27.XML
28.GUI Components
29.Dojo toolkit
30.jQuery
31.Animation
32.MS JScript
JavaScript Tutorial » jQuery » UI Tab 
30.150.1.jQuery UI Tab with list
<!--
  jQuery UI Effects Blind 1.7.2
 
  Copyright (c2009 AUTHORS.txt (http://jqueryui.com/about)
  Dual licensed under the MIT (MIT-LICENSE.txt)
  and GPL (GPL-LICENSE.txtlicenses.
 
 
-->
<!doctype html>
<html lang="en">
<head>
  <title>jQuery UI Sortable - Connect lists with Tabs</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>
  <script type="text/javascript" src="js/ui/ui.droppable.js"></script>
  <script type="text/javascript" src="js/ui/ui.tabs.js"></script>
  <link type="text/css" href="js/demos.css" rel="stylesheet" />
  <style type="text/css">
  #sortable1 li, #sortable2 li margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; width: 120px; }
  </style>
  <script type="text/javascript">
  $(function() {
    $("#sortable1, #sortable2").sortable().disableSelection();

    var $tabs = $("#tabs").tabs();

    var $tab_items = $("ul:first li",$tabs).droppable({
      accept: ".connectedSortable li",
      hoverClass: "ui-state-hover",
      drop: function(ev, ui) {
        var $item = $(this);
        var $list = $($item.find('a').attr('href')).find('.connectedSortable');

        ui.draggable.hide('slow', function() {
          $tabs.tabs('select', $tab_items.index($item));
          $(this).appendTo($list).show('slow');
        });
      }
    });
  });
  </script>
</head>
<body>
<div class="demo">

<div id="tabs">
  <ul>
    <li><a href="#tabs-1">Nunc tincidunt</a></li>
    <li><a href="#tabs-2">Proin dolor</a></li>
  </ul>
  <div id="tabs-1">
    <ul id="sortable1" class="connectedSortable ui-helper-reset">
      <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>
  </div>
  <div id="tabs-2">
    <ul id="sortable2" class="connectedSortable ui-helper-reset">
      <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>
  </div>
</div>

</div><!-- End demo -->

<div class="demo-description">

<p>
  Sort items from one list into another and vice versa, by dropping the list item on the appropriate tab above.
</p>

</div><!-- End demo-description -->

</body>
</html>
30.150.UI Tab
30.150.1.jQuery UI Tab with list
30.150.2.jQuery UI Tabs - Collapse content
30.150.3.jQuery UI Tabs - Default functionality
30.150.4.jQuery UI Tabs - Open on mouseover
30.150.5.jQuery UI Tabs - Sortable
30.150.6.jQuery UI Tabs - Vertical Tabs functionality
30.150.7.jQuery UI Tabs - Content via Ajax
30.150.8.Set second tab selected
30.150.9.Disable the first tab
30.150.10.Animation for tab on change event
30.150.11.Alert the id of the tab that was selected
30.150.12.Tab selected event
30.150.13.Enable and disable tab by click a button
30.150.14.Add a tab to tab panel
30.150.15.Remove a tab from tab panel
30.150.16.Rotate tabs
30.150.17.Destroy a tab panel
30.150.18.Add static html content from a file to tab panel
30.150.19.Load static html file to a tab panel
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.