aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2009-01-05 22:28:56 +0000
committerRichard Worth <rdworth@gmail.com>2009-01-05 22:28:56 +0000
commitcea09ddd0339a3593260e11bcbfd5cfd93a7be3d (patch)
tree6a771e4e7d39ea5fa1edaa4216ff58d6bbfcf12a /demos
parent7a3c9a0c9db6ca419529ab6c35f12a2037e31975 (diff)
downloadjquery-ui-cea09ddd0339a3593260e11bcbfd5cfd93a7be3d.tar.gz
jquery-ui-cea09ddd0339a3593260e11bcbfd5cfd93a7be3d.zip
demos/sortable: Added a portlets demo
Diffstat (limited to 'demos')
-rw-r--r--demos/sortable/index.html1
-rw-r--r--demos/sortable/portlets.html90
2 files changed, 91 insertions, 0 deletions
diff --git a/demos/sortable/index.html b/demos/sortable/index.html
index d8a714f1f..df988d0ec 100644
--- a/demos/sortable/index.html
+++ b/demos/sortable/index.html
@@ -18,6 +18,7 @@
<li><a href="connectwith.html">Connecting two lists</a></li>
<li><a href="droponempty.html">Dropping on empty lists</a></li>
<li><a href="droppable.html">Connect to droppables</a></li>
+ <li><a href="portlets.html">Portlets</a></li>
</ul>
</div>
diff --git a/demos/sortable/portlets.html b/demos/sortable/portlets.html
new file mode 100644
index 000000000..9c1c18266
--- /dev/null
+++ b/demos/sortable/portlets.html
@@ -0,0 +1,90 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Sortable - Default Demo</title>
+ <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3pre.js"></script>
+ <script type="text/javascript" src="../../ui/ui.core.js"></script>
+ <script type="text/javascript" src="../../ui/ui.sortable.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ .column { width: 170px; float: left; }
+ .portlet { margin: 1em; }
+ .portlet-header { margin: 0.3em; padding-left: 0.2em; }
+ .portlet-header .ui-icon { float: right; }
+ .portlet-content { padding: 0.4em; }
+ .ui-sortable-placeholder { border: 1px dotted black; visibility: visible !important; }
+ .ui-sortable-placeholder * { visibility: hidden; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $(".column").sortable({
+ connectWith: ['.column']
+ });
+
+ $(".portlet").addClass("ui-widget ui-widget-content ui-helper-clearfix ui-corner-all")
+ .find(".portlet-header")
+ .addClass("ui-widget-header ui-corner-all")
+ .prepend('<span class="ui-icon ui-icon-plusthick"></span>')
+ .end()
+ .find(".portlet-content");
+
+ $(".portlet-header .ui-icon").click(function() {
+ $(this).toggleClass("ui-icon-minusthick");
+ $(this).parents(".portlet:first").find(".portlet-content").toggle();
+ });
+ });
+ </script>
+</head>
+<body>
+<div class="demo">
+
+<div class="column">
+
+<div class="portlet">
+ <div class="portlet-header">Feeds</div>
+ <div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
+</div>
+
+<div class="portlet">
+ <div class="portlet-header">News</div>
+ <div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
+</div>
+
+</div>
+
+<div class="column">
+
+<div class="portlet">
+ <div class="portlet-header">Shopping</div>
+ <div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
+</div>
+
+</div>
+
+<div class="column">
+
+<div class="portlet">
+ <div class="portlet-header">Links</div>
+ <div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
+</div>
+
+<div class="portlet">
+ <div class="portlet-header">Images</div>
+ <div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
+</div>
+
+</div>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>
+
+</p>
+
+</div><!-- End demo-description -->
+
+</body>
+</html>