X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/DropZone.html diff --git a/docs/source/DropZone.html b/docs/source/DropZone.html index 348ea83f..1f046fd0 100644 --- a/docs/source/DropZone.html +++ b/docs/source/DropZone.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.dd.DropZone
  * @extends Ext.dd.DropTarget
 
@@ -72,7 +89,7 @@ Ext.define('Ext.dd.DropZone', {
     extend: 'Ext.dd.DropTarget',
     requires: ['Ext.dd.Registry'],
 
-    /**
+    /**
      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
      * this looks up the event target in the {@link Ext.dd.Registry}, although you can override this method to
      * provide your own custom lookup.
@@ -83,7 +100,7 @@ Ext.define('Ext.dd.DropZone', {
         return Ext.dd.Registry.getTargetFromEvent(e);
     },
 
-    /**
+    /**
      * Called when the DropZone determines that a {@link Ext.dd.DragSource} has entered a drop node
      * that has either been registered or detected by a configured implementation of {@link #getTargetFromEvent}.
      * This method has no default implementation and should be overridden to provide
@@ -98,7 +115,7 @@ Ext.define('Ext.dd.DropZone', {
         
     },
 
-    /**
+    /**
      * Called while the DropZone determines that a {@link Ext.dd.DragSource} is over a drop node
      * that has either been registered or detected by a configured implementation of {@link #getTargetFromEvent}.
      * The default implementation returns this.dropNotAllowed, so it should be
@@ -115,7 +132,7 @@ Ext.define('Ext.dd.DropZone', {
         return this.dropAllowed;
     },
 
-    /**
+    /**
      * Called when the DropZone determines that a {@link Ext.dd.DragSource} has been dragged out of
      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
      * node-specific processing if necessary.
@@ -129,7 +146,7 @@ Ext.define('Ext.dd.DropZone', {
         
     },
 
-    /**
+    /**
      * Called when the DropZone determines that a {@link Ext.dd.DragSource} has been dropped onto
      * the drop node.  The default implementation returns false, so it should be overridden to provide the
      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
@@ -144,7 +161,7 @@ Ext.define('Ext.dd.DropZone', {
         return false;
     },
 
-    /**
+    /**
      * Called while the DropZone determines that a {@link Ext.dd.DragSource} is being dragged over it,
      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
      * it should be overridden to provide the proper feedback if necessary.
@@ -158,7 +175,7 @@ Ext.define('Ext.dd.DropZone', {
         return this.dropNotAllowed;
     },
 
-    /**
+    /**
      * Called when the DropZone determines that a {@link Ext.dd.DragSource} has been dropped on it,
      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
@@ -172,7 +189,7 @@ Ext.define('Ext.dd.DropZone', {
         return false;
     },
 
-    /**
+    /**
      * The function a {@link Ext.dd.DragSource} calls once to notify this drop zone that the source is now over
      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
@@ -187,7 +204,7 @@ Ext.define('Ext.dd.DropZone', {
         return this.dropNotAllowed;
     },
 
-    /**
+    /**
      * The function a {@link Ext.dd.DragSource} calls continuously while it is being dragged over the drop zone.
      * This method will be called on every mouse movement while the drag source is over the drop zone.
      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
@@ -219,7 +236,7 @@ Ext.define('Ext.dd.DropZone', {
         return this.onNodeOver(n, dd, e, data);
     },
 
-    /**
+    /**
      * The function a {@link Ext.dd.DragSource} calls once to notify this drop zone that the source has been dragged
      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
@@ -234,7 +251,7 @@ Ext.define('Ext.dd.DropZone', {
         }
     },
 
-    /**
+    /**
      * The function a {@link Ext.dd.DragSource} calls once to notify this drop zone that the dragged item has
      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
@@ -259,4 +276,6 @@ Ext.define('Ext.dd.DropZone', {
     triggerCacheRefresh : function() {
         Ext.dd.DDM.refreshCache(this.groups);
     }
-});
\ No newline at end of file +});
+ +