Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / source / DropTarget.html
index de9cd53..0bfcce1 100644 (file)
@@ -1,4 +1,21 @@
-<!DOCTYPE html><html><head><title>Sencha Documentation Project</title><link rel="stylesheet" href="../reset.css" type="text/css"><link rel="stylesheet" href="../prettify.css" type="text/css"><link rel="stylesheet" href="../prettify_sa.css" type="text/css"><script type="text/javascript" src="../prettify.js"></script></head><body onload="prettyPrint()"><pre class="prettyprint"><pre><span id='Ext-dd.DropTarget-method-constructor'><span id='Ext-dd.DropTarget'>/**
+<!DOCTYPE html>
+<html>
+<head>
+  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+  <title>The source code</title>
+  <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
+  <script type="text/javascript" src="../prettify/prettify.js"></script>
+  <style type="text/css">
+    .highlight { display: block; background-color: #ddd; }
+  </style>
+  <script type="text/javascript">
+    function highlight() {
+      document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
+    }
+  </script>
+</head>
+<body onload="prettyPrint(); highlight();">
+  <pre class="prettyprint lang-js"><span id='Ext-dd-DropTarget-method-constructor'><span id='Ext-dd-DropTarget'>/**
 </span></span> * @class Ext.dd.DropTarget
  * @extends Ext.dd.DDTarget
  * A simple class that provides the basic implementation needed to make any element a drop target that can have
 </span></span> * @class Ext.dd.DropTarget
  * @extends Ext.dd.DDTarget
  * A simple class that provides the basic implementation needed to make any element a drop target that can have
@@ -24,21 +41,21 @@ Ext.define('Ext.dd.DropTarget', {
               {isTarget: true}]);
     },
 
               {isTarget: true}]);
     },
 
-<span id='Ext-dd.DropTarget-cfg-ddGroup'>    /**
+<span id='Ext-dd-DropTarget-cfg-ddGroup'>    /**
 </span>     * @cfg {String} ddGroup
      * A named drag drop group to which this object belongs.  If a group is specified, then this object will only
      * interact with other drag drop objects in the same group (defaults to undefined).
      */
 </span>     * @cfg {String} ddGroup
      * A named drag drop group to which this object belongs.  If a group is specified, then this object will only
      * interact with other drag drop objects in the same group (defaults to undefined).
      */
-<span id='Ext-dd.DropTarget-cfg-overClass'>    /**
+<span id='Ext-dd-DropTarget-cfg-overClass'>    /**
 </span>     * @cfg {String} overClass
      * The CSS class applied to the drop target element while the drag source is over it (defaults to &quot;&quot;).
      */
 </span>     * @cfg {String} overClass
      * The CSS class applied to the drop target element while the drag source is over it (defaults to &quot;&quot;).
      */
-<span id='Ext-dd.DropTarget-cfg-dropAllowed'>    /**
+<span id='Ext-dd-DropTarget-cfg-dropAllowed'>    /**
 </span>     * @cfg {String} dropAllowed
      * The CSS class returned to the drag source when drop is allowed (defaults to &quot;x-dd-drop-ok&quot;).
      */
     dropAllowed : Ext.baseCSSPrefix + 'dd-drop-ok',
 </span>     * @cfg {String} dropAllowed
      * The CSS class returned to the drag source when drop is allowed (defaults to &quot;x-dd-drop-ok&quot;).
      */
     dropAllowed : Ext.baseCSSPrefix + 'dd-drop-ok',
-<span id='Ext-dd.DropTarget-cfg-dropNotAllowed'>    /**
+<span id='Ext-dd-DropTarget-cfg-dropNotAllowed'>    /**
 </span>     * @cfg {String} dropNotAllowed
      * The CSS class returned to the drag source when drop is not allowed (defaults to &quot;x-dd-drop-nodrop&quot;).
      */
 </span>     * @cfg {String} dropNotAllowed
      * The CSS class returned to the drag source when drop is not allowed (defaults to &quot;x-dd-drop-nodrop&quot;).
      */
@@ -50,7 +67,7 @@ Ext.define('Ext.dd.DropTarget', {
     // private
     isNotifyTarget : true,
 
     // private
     isNotifyTarget : true,
 
-<span id='Ext-dd.DropTarget-method-notifyEnter'>    /**
+<span id='Ext-dd-DropTarget-method-notifyEnter'>    /**
 </span>     * The function a {@link Ext.dd.DragSource} calls once to notify this drop target that the source is now over the
      * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
      * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
 </span>     * The function a {@link Ext.dd.DragSource} calls once to notify this drop target that the source is now over the
      * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
      * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
@@ -67,7 +84,7 @@ Ext.define('Ext.dd.DropTarget', {
         return this.dropAllowed;
     },
 
         return this.dropAllowed;
     },
 
-<span id='Ext-dd.DropTarget-method-notifyOver'>    /**
+<span id='Ext-dd-DropTarget-method-notifyOver'>    /**
 </span>     * The function a {@link Ext.dd.DragSource} calls continuously while it is being dragged over the target.
      * This method will be called on every mouse movement while the drag source is over the drop target.
      * This default implementation simply returns the dropAllowed config value.
 </span>     * The function a {@link Ext.dd.DragSource} calls continuously while it is being dragged over the target.
      * This method will be called on every mouse movement while the drag source is over the drop target.
      * This default implementation simply returns the dropAllowed config value.
@@ -81,7 +98,7 @@ Ext.define('Ext.dd.DropTarget', {
         return this.dropAllowed;
     },
 
         return this.dropAllowed;
     },
 
-<span id='Ext-dd.DropTarget-method-notifyOut'>    /**
+<span id='Ext-dd-DropTarget-method-notifyOut'>    /**
 </span>     * The function a {@link Ext.dd.DragSource} calls once to notify this drop target that the source has been dragged
      * out of the target without dropping.  This default implementation simply removes the CSS class specified by
      * overClass (if any) from the drop element.
 </span>     * The function a {@link Ext.dd.DragSource} calls once to notify this drop target that the source has been dragged
      * out of the target without dropping.  This default implementation simply removes the CSS class specified by
      * overClass (if any) from the drop element.
@@ -95,7 +112,7 @@ Ext.define('Ext.dd.DropTarget', {
         }
     },
 
         }
     },
 
-<span id='Ext-dd.DropTarget-method-notifyDrop'>    /**
+<span id='Ext-dd-DropTarget-method-notifyDrop'>    /**
 </span>     * The function a {@link Ext.dd.DragSource} calls once to notify this drop target that the dragged item has
      * been dropped on it.  This method has no default implementation and returns false, so you must provide an
      * implementation that does something to process the drop event and returns true so that the drag source's
 </span>     * The function a {@link Ext.dd.DragSource} calls once to notify this drop target that the dragged item has
      * been dropped on it.  This method has no default implementation and returns false, so you must provide an
      * implementation that does something to process the drop event and returns true so that the drag source's
@@ -116,4 +133,6 @@ Ext.define('Ext.dd.DropTarget', {
         }
     }
 });
         }
     }
 });
-</pre></pre></body></html>
\ No newline at end of file
+</pre>
+</body>
+</html>