src/cm/media/js/lib/yui/yui_3.10.3/docs/dd/delegate-plugins.html
changeset 525 89ef5ed3c48b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/cm/media/js/lib/yui/yui_3.10.3/docs/dd/delegate-plugins.html	Tue Jul 16 14:29:46 2013 +0200
@@ -0,0 +1,522 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="utf-8">
+    <title>Example: Using Drag Plugins with Delegate</title>
+    <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic">
+    <link rel="stylesheet" href="../../build/cssgrids/cssgrids-min.css">
+    <link rel="stylesheet" href="../assets/css/main.css">
+    <link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
+    <link rel="shortcut icon" type="image/png" href="../assets/favicon.png">
+    <script src="../../build/yui/yui-min.js"></script>
+    
+</head>
+<body>
+<!--
+<a href="https://github.com/yui/yui3"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
+-->
+<div id="doc">
+    <div id="hd">
+        <h1><img src="http://yuilibrary.com/img/yui-logo.png"></h1>
+    </div>
+    
+        <a href="#toc" class="jump">Jump to Table of Contents</a>
+    
+
+            <h1>Example: Using Drag Plugins with Delegate</h1>
+    <div class="yui3-g">
+        <div class="yui3-u-3-4">
+            <div id="main">
+                <div class="content"><div class="intro">
+<p>This example is the same as the "Drag Delegation with Drop Target" example except we add some plugins.</p>
+</div>
+
+<div class="example">
+    <style>
+    #demo {
+    }
+    #demo ul li {
+        border: 1px solid black;
+        background-color: #8DD5E7;
+        cursor: move;
+        margin: 3px;
+        list-style-type: none;
+        z-index: 2;
+        width: 200px;
+        height: 20px;
+        padding: 2px;
+        zoom: 1;
+    }
+    #play {
+        border: 1px solid black;
+        zoom: 1;
+        padding: 2em;
+    }
+    #drop {
+        border: 1px solid black;
+        background-color: #eee;
+        height: 50px;
+        width: 200px;
+        float: right;
+        bottom: 50px;
+        position: relative;
+    }
+    #drop strong {
+        font-weight: bold;
+    }
+    #drop.yui3-dd-drop-over {
+        background-color: #ccc;
+    }
+    #example-canvas {
+        position: static;
+    }
+
+
+</style>
+
+<div id="play">
+
+    <div id="demo">
+        <ul>
+            <li>Item #1</li>
+            <li>Item #2</li>
+            <li>Item #3</li>
+            <li>Item #4</li>
+            <li>Item #5</li>
+            <li>Item #6</li>
+            <li>Item #7</li>
+            <li>Item #8</li>
+            <li>Item #9</li>
+            <li>Item #10</li>
+        </ul>
+    </div>
+    
+    <div id="drop">Drop on me</div>
+</div>
+
+
+
+<script>
+    YUI().use('dd-delegate', 'dd-drop-plugin', 'dd-constrain', 'dd-proxy', function(Y) {
+        var del = new Y.DD.Delegate({
+            container: '#demo',
+            nodes: 'li'
+        });
+
+        del.on('drag:start', function(e) {
+            e.target.get('node').setStyle('opacity', '.5');
+        });
+        del.on('drag:end', function(e) {
+            e.target.get('node').setStyle('opacity', '1');
+        });
+        
+        del.dd.plug(Y.Plugin.DDConstrained, {
+            constrain2node: '#play'
+        });
+
+        del.dd.plug(Y.Plugin.DDProxy, {
+            moveOnEnd: false,
+            cloneNode: true
+        });
+
+        var drop = Y.one('#drop').plug(Y.Plugin.Drop);
+        drop.drop.on('drop:hit', function(e) {
+            drop.set('innerHTML', 'You dropped: <strong>' + e.drag.get('node').get('innerHTML') + '</strong>');
+        });
+        
+
+    });
+
+
+</script>
+
+
+</div>
+
+<h3 id="adding-plugins-to-a-delegate-instance">Adding Plugins to a Delegate instance</h3>
+<p><code>DD.Delegate</code> provides a reference to the <code>dd</code> instance so you can plug into the underlying <code>dd</code> with <code>del.dd.plug()</code>.
+This allows you to use DD plugins on a Delegate instance, as well as provides the ability to write plugins for Delegate itself.
+</p>
+
+<h3 id="constrain-plugin">Constrain Plugin</h3>
+<p>Here is how you would add the constrain plugin to a <code>DD.Delegate</code> instance.</p>
+
+<pre class="code prettyprint">YUI().use(&#x27;dd-delegate&#x27;, &#x27;dd-constrain&#x27;, function(Y) {
+    var del = new Y.DD.Delegate({
+        container: &#x27;#demo&#x27;,
+        nodes: &#x27;li&#x27;
+    });
+
+    del.dd.plug(Y.Plugin.DDConstrained, {
+        constrain2node: &#x27;#play&#x27;
+    });
+});</pre>
+
+
+<h3 id="ddproxy-plugin">DDProxy Plugin</h3>
+<p>Here is how you would add the dd-proxy plugin to a <code>DD.Delegate</code> instance.</p>
+
+<pre class="code prettyprint">YUI().use(&#x27;dd-delegate&#x27;, &#x27;dd-proxy&#x27;, function(Y) {
+    var del = new Y.DD.Delegate({
+        container: &#x27;#demo&#x27;,
+        nodes: &#x27;li&#x27;
+    });
+
+    del.dd.plug(Y.Plugin.DDProxy, {
+        moveOnEnd: false,
+        cloneNode: true
+    });
+
+});</pre>
+
+
+<h3 id="full-example-source">Full Example Source</h3>
+
+<h4 id="html">HTML</h4>
+<pre class="code prettyprint">&lt;div id=&quot;play&quot;&gt;
+
+    &lt;div id=&quot;demo&quot;&gt;
+        &lt;ul&gt;
+            &lt;li&gt;Item #1&lt;&#x2F;li&gt;
+            &lt;li&gt;Item #2&lt;&#x2F;li&gt;
+            &lt;li&gt;Item #3&lt;&#x2F;li&gt;
+            &lt;li&gt;Item #4&lt;&#x2F;li&gt;
+            &lt;li&gt;Item #5&lt;&#x2F;li&gt;
+            &lt;li&gt;Item #6&lt;&#x2F;li&gt;
+            &lt;li&gt;Item #7&lt;&#x2F;li&gt;
+            &lt;li&gt;Item #8&lt;&#x2F;li&gt;
+            &lt;li&gt;Item #9&lt;&#x2F;li&gt;
+            &lt;li&gt;Item #10&lt;&#x2F;li&gt;
+        &lt;&#x2F;ul&gt;
+    &lt;&#x2F;div&gt;
+    
+    &lt;div id=&quot;drop&quot;&gt;Drop on me&lt;&#x2F;div&gt;
+&lt;&#x2F;div&gt;</pre>
+
+<h4 id="css">CSS</h4>
+<pre class="code prettyprint">#demo {
+}
+#demo ul li {
+    border: 1px solid black;
+    background-color: #8DD5E7;
+    cursor: move;
+    margin: 3px;
+    list-style-type: none;
+    z-index: 2;
+    width: 200px;
+    height: 20px;
+    padding: 2px;
+    zoom: 1;
+}
+#play {
+    border: 1px solid black;
+    zoom: 1;
+    padding: 2em;
+}
+#drop {
+    border: 1px solid black;
+    background-color: #eee;
+    height: 50px;
+    width: 200px;
+    float: right;
+    bottom: 50px;
+    position: relative;
+}
+#drop strong {
+    font-weight: bold;
+}
+#drop.yui3-dd-drop-over {
+    background-color: #ccc;
+}
+#example-canvas {
+    position: static;
+}</pre>
+
+<h4 id="javascript">Javascript</h4>
+<pre class="code prettyprint">YUI().use(&#x27;dd-delegate&#x27;, &#x27;dd-drop-plugin&#x27;, &#x27;dd-constrain&#x27;, &#x27;dd-proxy&#x27;, function(Y) {
+    var del = new Y.DD.Delegate({
+        container: &#x27;#demo&#x27;,
+        nodes: &#x27;li&#x27;
+    });
+
+    del.on(&#x27;drag:start&#x27;, function(e) {
+        e.target.get(&#x27;node&#x27;).setStyle(&#x27;opacity&#x27;, &#x27;.5&#x27;);
+    });
+    del.on(&#x27;drag:end&#x27;, function(e) {
+        e.target.get(&#x27;node&#x27;).setStyle(&#x27;opacity&#x27;, &#x27;1&#x27;);
+    });
+    
+    del.dd.plug(Y.Plugin.DDConstrained, {
+        constrain2node: &#x27;#play&#x27;
+    });
+
+    del.dd.plug(Y.Plugin.DDProxy, {
+        moveOnEnd: false,
+        cloneNode: true
+    });
+
+    var drop = Y.one(&#x27;#drop&#x27;).plug(Y.Plugin.Drop);
+    drop.drop.on(&#x27;drop:hit&#x27;, function(e) {
+        drop.set(&#x27;innerHTML&#x27;, &#x27;You dropped: &lt;strong&gt;&#x27; + e.drag.get(&#x27;node&#x27;).get(&#x27;innerHTML&#x27;) + &#x27;&lt;&#x2F;strong&gt;&#x27;);
+    });
+    
+
+});</pre>
+
+</div>
+            </div>
+        </div>
+
+        <div class="yui3-u-1-4">
+            <div class="sidebar">
+                
+                    <div id="toc" class="sidebox">
+                        <div class="hd">
+                            <h2 class="no-toc">Table of Contents</h2>
+                        </div>
+
+                        <div class="bd">
+                            <ul class="toc">
+<li>
+<a href="#adding-plugins-to-a-delegate-instance">Adding Plugins to a Delegate instance</a>
+</li>
+<li>
+<a href="#constrain-plugin">Constrain Plugin</a>
+</li>
+<li>
+<a href="#ddproxy-plugin">DDProxy Plugin</a>
+</li>
+<li>
+<a href="#full-example-source">Full Example Source</a>
+<ul class="toc">
+<li>
+<a href="#html">HTML</a>
+</li>
+<li>
+<a href="#css">CSS</a>
+</li>
+<li>
+<a href="#javascript">Javascript</a>
+</li>
+</ul>
+</li>
+</ul>
+                        </div>
+                    </div>
+                
+
+                
+                    <div class="sidebox">
+                        <div class="hd">
+                            <h2 class="no-toc">Examples</h2>
+                        </div>
+
+                        <div class="bd">
+                            <ul class="examples">
+                                
+                                    
+                                        <li data-description="A simple drag interaction that doesn&#x27;t require a drop interaction.">
+                                            <a href="simple-drag.html">Simple Drag</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="How to apply the Drag Plugin to a node.">
+                                            <a href="drag-plugin.html">Drag - Node plugin</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="A simple proxy drag interaction that doesn&#x27;t require a drop interaction.">
+                                            <a href="proxy-drag.html">Drag - Proxy</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="How to constrain a draggable Node to another Node&#x27;s region.">
+                                            <a href="constrained-drag.html">Drag - Constrained to a Region</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="Using interaction groups, this example demonstrates how to tie into the Drag &amp; Drop Utility&#x27;s interesting moments to provide visual affordances for the current drag operation.">
+                                            <a href="groups-drag.html">Drag - Interaction Groups</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="The use of the drag shim when dragging nodes over other troublesome nodes.">
+                                            <a href="shim-drag.html">Using the Drag Shim</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="How to use the Drop Target events to code your application.">
+                                            <a href="drop-code.html">Using Drop Based Coding</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="How you can use the DD Scroll plugin to scroll the browser window as you drag.">
+                                            <a href="winscroll.html">Window Scrolling</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="How to use DD.Delegate to create a scalable solution which supports multiple draggable items.">
+                                            <a href="delegate.html">Drag Delegation</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="Using DD.Delegate to support dragging multiple items and dropping them onto a Drop Target.">
+                                            <a href="delegate-drop.html">Drag Delegation with a Drop Target</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="How to use Drag plugins with a DD Delegate based solution.">
+                                            <a href="delegate-plugins.html">Using Drag Plugins with Delegate</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="This example shows how to make a sortable list using Custom Event Bubbling.">
+                                            <a href="list-drag.html">List Reorder w/Bubbling</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="This example shows how to make a sortable list using Custom Event Bubbling and Node Scrolling.">
+                                            <a href="scroll-list.html">List Reorder w/Scrolling</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="How to make an animated node a Drop target.">
+                                            <a href="anim-drop.html">Animated Drop Targets</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="Example Photo Browser application.">
+                                            <a href="photo-browser.html">Photo Browser</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="Portal style example using Drag &amp; Drop Event Bubbling and Animation.">
+                                            <a href="portal-drag.html">Portal Style Example</a>
+                                        </li>
+                                    
+                                
+                                    
+                                
+                                    
+                                
+                            </ul>
+                        </div>
+                    </div>
+                
+
+                
+                    <div class="sidebox">
+                        <div class="hd">
+                            <h2 class="no-toc">Examples That Use This Component</h2>
+                        </div>
+
+                        <div class="bd">
+                            <ul class="examples">
+                                
+                                    
+                                
+                                    
+                                
+                                    
+                                
+                                    
+                                
+                                    
+                                
+                                    
+                                
+                                    
+                                
+                                    
+                                
+                                    
+                                
+                                    
+                                
+                                    
+                                
+                                    
+                                
+                                    
+                                
+                                    
+                                
+                                    
+                                
+                                    
+                                
+                                    
+                                        <li data-description="Working with multiple YUI instances.">
+                                            <a href="../yui/yui-multi.html">Multiple Instances</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="Use StyleSheet to adjust the CSS rules applying a page theme from user input">
+                                            <a href="../stylesheet/stylesheet-theme.html">Adjusting a Page Theme on the Fly</a>
+                                        </li>
+                                    
+                                
+                            </ul>
+                        </div>
+                    </div>
+                
+            </div>
+        </div>
+    </div>
+</div>
+
+<script src="../assets/vendor/prettify/prettify-min.js"></script>
+<script>prettyPrint();</script>
+
+<script>
+YUI.Env.Tests = {
+    examples: [],
+    project: '../assets',
+    assets: '../assets/dd',
+    name: 'delegate-plugins',
+    title: 'Using Drag Plugins with Delegate',
+    newWindow: '',
+    auto:  false 
+};
+YUI.Env.Tests.examples.push('simple-drag');
+YUI.Env.Tests.examples.push('drag-plugin');
+YUI.Env.Tests.examples.push('proxy-drag');
+YUI.Env.Tests.examples.push('constrained-drag');
+YUI.Env.Tests.examples.push('groups-drag');
+YUI.Env.Tests.examples.push('shim-drag');
+YUI.Env.Tests.examples.push('drop-code');
+YUI.Env.Tests.examples.push('winscroll');
+YUI.Env.Tests.examples.push('delegate');
+YUI.Env.Tests.examples.push('delegate-drop');
+YUI.Env.Tests.examples.push('delegate-plugins');
+YUI.Env.Tests.examples.push('list-drag');
+YUI.Env.Tests.examples.push('scroll-list');
+YUI.Env.Tests.examples.push('anim-drop');
+YUI.Env.Tests.examples.push('photo-browser');
+YUI.Env.Tests.examples.push('portal-drag');
+YUI.Env.Tests.examples.push('yui-multi');
+YUI.Env.Tests.examples.push('stylesheet-theme');
+
+</script>
+<script src="../assets/yui/test-runner.js"></script>
+
+
+
+</body>
+</html>