ext-dd-debug.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:155k
源码类别:

JavaScript

开发平台:

JavaScript

  1.                 this.proxy.setStatus(status);
  2.             }
  3.             if(this.afterDragOver){
  4.                 /**
  5.                  * An empty function by default, but provided so that you can perform a custom action
  6.                  * while the dragged item is over the drop target by providing an implementation.
  7.                  * @param {Ext.dd.DragDrop} target The drop target
  8.                  * @param {Event} e The event object
  9.                  * @param {String} id The id of the dragged element
  10.                  * @method afterDragOver
  11.                  */
  12.                 this.afterDragOver(target, e, id);
  13.             }
  14.         }
  15.     },
  16.     /**
  17.      * An empty function by default, but provided so that you can perform a custom action
  18.      * while the dragged item is over the drop target and optionally cancel the onDragOver.
  19.      * @param {Ext.dd.DragDrop} target The drop target
  20.      * @param {Event} e The event object
  21.      * @param {String} id The id of the dragged element
  22.      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
  23.      */
  24.     beforeDragOver : function(target, e, id){
  25.         return true;
  26.     },
  27.     // private
  28.     onDragOut : function(e, id){
  29.         var target = this.cachedTarget || Ext.dd.DragDropMgr.getDDById(id);
  30.         if(this.beforeDragOut(target, e, id) !== false){
  31.             if(target.isNotifyTarget){
  32.                 target.notifyOut(this, e, this.dragData);
  33.             }
  34.             this.proxy.reset();
  35.             if(this.afterDragOut){
  36.                 /**
  37.                  * An empty function by default, but provided so that you can perform a custom action
  38.                  * after the dragged item is dragged out of the target without dropping.
  39.                  * @param {Ext.dd.DragDrop} target The drop target
  40.                  * @param {Event} e The event object
  41.                  * @param {String} id The id of the dragged element
  42.                  * @method afterDragOut
  43.                  */
  44.                 this.afterDragOut(target, e, id);
  45.             }
  46.         }
  47.         this.cachedTarget = null;
  48.     },
  49.     /**
  50.      * An empty function by default, but provided so that you can perform a custom action before the dragged
  51.      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
  52.      * @param {Ext.dd.DragDrop} target The drop target
  53.      * @param {Event} e The event object
  54.      * @param {String} id The id of the dragged element
  55.      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
  56.      */
  57.     beforeDragOut : function(target, e, id){
  58.         return true;
  59.     },
  60.     
  61.     // private
  62.     onDragDrop : function(e, id){
  63.         var target = this.cachedTarget || Ext.dd.DragDropMgr.getDDById(id);
  64.         if(this.beforeDragDrop(target, e, id) !== false){
  65.             if(target.isNotifyTarget){
  66.                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
  67.                     this.onValidDrop(target, e, id);
  68.                 }else{
  69.                     this.onInvalidDrop(target, e, id);
  70.                 }
  71.             }else{
  72.                 this.onValidDrop(target, e, id);
  73.             }
  74.             
  75.             if(this.afterDragDrop){
  76.                 /**
  77.                  * An empty function by default, but provided so that you can perform a custom action
  78.                  * after a valid drag drop has occurred by providing an implementation.
  79.                  * @param {Ext.dd.DragDrop} target The drop target
  80.                  * @param {Event} e The event object
  81.                  * @param {String} id The id of the dropped element
  82.                  * @method afterDragDrop
  83.                  */
  84.                 this.afterDragDrop(target, e, id);
  85.             }
  86.         }
  87.         delete this.cachedTarget;
  88.     },
  89.     /**
  90.      * An empty function by default, but provided so that you can perform a custom action before the dragged
  91.      * item is dropped onto the target and optionally cancel the onDragDrop.
  92.      * @param {Ext.dd.DragDrop} target The drop target
  93.      * @param {Event} e The event object
  94.      * @param {String} id The id of the dragged element
  95.      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
  96.      */
  97.     beforeDragDrop : function(target, e, id){
  98.         return true;
  99.     },
  100.     // private
  101.     onValidDrop : function(target, e, id){
  102.         this.hideProxy();
  103.         if(this.afterValidDrop){
  104.             /**
  105.              * An empty function by default, but provided so that you can perform a custom action
  106.              * after a valid drop has occurred by providing an implementation.
  107.              * @param {Object} target The target DD 
  108.              * @param {Event} e The event object
  109.              * @param {String} id The id of the dropped element
  110.              * @method afterInvalidDrop
  111.              */
  112.             this.afterValidDrop(target, e, id);
  113.         }
  114.     },
  115.     // private
  116.     getRepairXY : function(e, data){
  117.         return this.el.getXY();  
  118.     },
  119.     // private
  120.     onInvalidDrop : function(target, e, id){
  121.         this.beforeInvalidDrop(target, e, id);
  122.         if(this.cachedTarget){
  123.             if(this.cachedTarget.isNotifyTarget){
  124.                 this.cachedTarget.notifyOut(this, e, this.dragData);
  125.             }
  126.             this.cacheTarget = null;
  127.         }
  128.         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
  129.         if(this.afterInvalidDrop){
  130.             /**
  131.              * An empty function by default, but provided so that you can perform a custom action
  132.              * after an invalid drop has occurred by providing an implementation.
  133.              * @param {Event} e The event object
  134.              * @param {String} id The id of the dropped element
  135.              * @method afterInvalidDrop
  136.              */
  137.             this.afterInvalidDrop(e, id);
  138.         }
  139.     },
  140.     // private
  141.     afterRepair : function(){
  142.         if(Ext.enableFx){
  143.             this.el.highlight(this.hlColor || "c3daf9");
  144.         }
  145.         this.dragging = false;
  146.     },
  147.     /**
  148.      * An empty function by default, but provided so that you can perform a custom action after an invalid
  149.      * drop has occurred.
  150.      * @param {Ext.dd.DragDrop} target The drop target
  151.      * @param {Event} e The event object
  152.      * @param {String} id The id of the dragged element
  153.      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
  154.      */
  155.     beforeInvalidDrop : function(target, e, id){
  156.         return true;
  157.     },
  158.     // private
  159.     handleMouseDown : function(e){
  160.         if(this.dragging) {
  161.             return;
  162.         }
  163.         var data = this.getDragData(e);
  164.         if(data && this.onBeforeDrag(data, e) !== false){
  165.             this.dragData = data;
  166.             this.proxy.stop();
  167.             Ext.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
  168.         } 
  169.     },
  170.     /**
  171.      * An empty function by default, but provided so that you can perform a custom action before the initial
  172.      * drag event begins and optionally cancel it.
  173.      * @param {Object} data An object containing arbitrary data to be shared with drop targets
  174.      * @param {Event} e The event object
  175.      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
  176.      */
  177.     onBeforeDrag : function(data, e){
  178.         return true;
  179.     },
  180.     /**
  181.      * An empty function by default, but provided so that you can perform a custom action once the initial
  182.      * drag event has begun.  The drag cannot be canceled from this function.
  183.      * @param {Number} x The x position of the click on the dragged object
  184.      * @param {Number} y The y position of the click on the dragged object
  185.      */
  186.     onStartDrag : Ext.emptyFn,
  187.     // private override
  188.     startDrag : function(x, y){
  189.         this.proxy.reset();
  190.         this.dragging = true;
  191.         this.proxy.update("");
  192.         this.onInitDrag(x, y);
  193.         this.proxy.show();
  194.     },
  195.     // private
  196.     onInitDrag : function(x, y){
  197.         var clone = this.el.dom.cloneNode(true);
  198.         clone.id = Ext.id(); // prevent duplicate ids
  199.         this.proxy.update(clone);
  200.         this.onStartDrag(x, y);
  201.         return true;
  202.     },
  203.     /**
  204.      * Returns the drag source's underlying {@link Ext.dd.StatusProxy}
  205.      * @return {Ext.dd.StatusProxy} proxy The StatusProxy
  206.      */
  207.     getProxy : function(){
  208.         return this.proxy;  
  209.     },
  210.     /**
  211.      * Hides the drag source's {@link Ext.dd.StatusProxy}
  212.      */
  213.     hideProxy : function(){
  214.         this.proxy.hide();  
  215.         this.proxy.reset(true);
  216.         this.dragging = false;
  217.     },
  218.     // private
  219.     triggerCacheRefresh : function(){
  220.         Ext.dd.DDM.refreshCache(this.groups);
  221.     },
  222.     // private - override to prevent hiding
  223.     b4EndDrag: function(e) {
  224.     },
  225.     // private - override to prevent moving
  226.     endDrag : function(e){
  227.         this.onEndDrag(this.dragData, e);
  228.     },
  229.     // private
  230.     onEndDrag : function(data, e){
  231.     },
  232.     
  233.     // private - pin to cursor
  234.     autoOffset : function(x, y) {
  235.         this.setDelta(-12, -20);
  236.     },
  237.     
  238.     destroy: function(){
  239.         Ext.dd.DragSource.superclass.destroy.call(this);
  240.         Ext.destroy(this.proxy);
  241.     }
  242. });/**
  243.  * @class Ext.dd.DropTarget
  244.  * @extends Ext.dd.DDTarget
  245.  * A simple class that provides the basic implementation needed to make any element a drop target that can have
  246.  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
  247.  * @constructor
  248.  * @param {Mixed} el The container element
  249.  * @param {Object} config
  250.  */
  251. Ext.dd.DropTarget = function(el, config){
  252.     this.el = Ext.get(el);
  253.     
  254.     Ext.apply(this, config);
  255.     
  256.     if(this.containerScroll){
  257.         Ext.dd.ScrollManager.register(this.el);
  258.     }
  259.     
  260.     Ext.dd.DropTarget.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group, 
  261.           {isTarget: true});
  262. };
  263. Ext.extend(Ext.dd.DropTarget, Ext.dd.DDTarget, {
  264.     /**
  265.      * @cfg {String} ddGroup
  266.      * A named drag drop group to which this object belongs.  If a group is specified, then this object will only
  267.      * interact with other drag drop objects in the same group (defaults to undefined).
  268.      */
  269.     /**
  270.      * @cfg {String} overClass
  271.      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
  272.      */
  273.     /**
  274.      * @cfg {String} dropAllowed
  275.      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
  276.      */
  277.     dropAllowed : "x-dd-drop-ok",
  278.     /**
  279.      * @cfg {String} dropNotAllowed
  280.      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
  281.      */
  282.     dropNotAllowed : "x-dd-drop-nodrop",
  283.     // private
  284.     isTarget : true,
  285.     // private
  286.     isNotifyTarget : true,
  287.     /**
  288.      * The function a {@link Ext.dd.DragSource} calls once to notify this drop target that the source is now over the
  289.      * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
  290.      * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
  291.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop target
  292.      * @param {Event} e The event
  293.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  294.      * @return {String} status The CSS class that communicates the drop status back to the source so that the
  295.      * underlying {@link Ext.dd.StatusProxy} can be updated
  296.      */
  297.     notifyEnter : function(dd, e, data){
  298.         if(this.overClass){
  299.             this.el.addClass(this.overClass);
  300.         }
  301.         return this.dropAllowed;
  302.     },
  303.     /**
  304.      * The function a {@link Ext.dd.DragSource} calls continuously while it is being dragged over the target.
  305.      * This method will be called on every mouse movement while the drag source is over the drop target.
  306.      * This default implementation simply returns the dropAllowed config value.
  307.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop target
  308.      * @param {Event} e The event
  309.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  310.      * @return {String} status The CSS class that communicates the drop status back to the source so that the
  311.      * underlying {@link Ext.dd.StatusProxy} can be updated
  312.      */
  313.     notifyOver : function(dd, e, data){
  314.         return this.dropAllowed;
  315.     },
  316.     /**
  317.      * The function a {@link Ext.dd.DragSource} calls once to notify this drop target that the source has been dragged
  318.      * out of the target without dropping.  This default implementation simply removes the CSS class specified by
  319.      * overClass (if any) from the drop element.
  320.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop target
  321.      * @param {Event} e The event
  322.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  323.      */
  324.     notifyOut : function(dd, e, data){
  325.         if(this.overClass){
  326.             this.el.removeClass(this.overClass);
  327.         }
  328.     },
  329.     /**
  330.      * The function a {@link Ext.dd.DragSource} calls once to notify this drop target that the dragged item has
  331.      * been dropped on it.  This method has no default implementation and returns false, so you must provide an
  332.      * implementation that does something to process the drop event and returns true so that the drag source's
  333.      * repair action does not run.
  334.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop target
  335.      * @param {Event} e The event
  336.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  337.      * @return {Boolean} True if the drop was valid, else false
  338.      */
  339.     notifyDrop : function(dd, e, data){
  340.         return false;
  341.     }
  342. });/**
  343.  * @class Ext.dd.DragZone
  344.  * @extends Ext.dd.DragSource
  345.  * <p>This class provides a container DD instance that allows dragging of multiple child source nodes.</p>
  346.  * <p>This class does not move the drag target nodes, but a proxy element which may contain
  347.  * any DOM structure you wish. The DOM element to show in the proxy is provided by either a
  348.  * provided implementation of {@link #getDragData}, or by registered draggables registered with {@link Ext.dd.Registry}</p>
  349.  * <p>If you wish to provide draggability for an arbitrary number of DOM nodes, each of which represent some
  350.  * application object (For example nodes in a {@link Ext.DataView DataView}) then use of this class
  351.  * is the most efficient way to "activate" those nodes.</p>
  352.  * <p>By default, this class requires that draggable child nodes are registered with {@link Ext.dd.Registry}.
  353.  * However a simpler way to allow a DragZone to manage any number of draggable elements is to configure
  354.  * the DragZone with  an implementation of the {@link #getDragData} method which interrogates the passed
  355.  * mouse event to see if it has taken place within an element, or class of elements. This is easily done
  356.  * by using the event's {@link Ext.EventObject#getTarget getTarget} method to identify a node based on a
  357.  * {@link Ext.DomQuery} selector. For example, to make the nodes of a DataView draggable, use the following
  358.  * technique. Knowledge of the use of the DataView is required:</p><pre><code>
  359. myDataView.on('render', function(v) {
  360.     myDataView.dragZone = new Ext.dd.DragZone(v.getEl(), {
  361. //      On receipt of a mousedown event, see if it is within a DataView node.
  362. //      Return a drag data object if so.
  363.         getDragData: function(e) {
  364. //          Use the DataView's own itemSelector (a mandatory property) to
  365. //          test if the mousedown is within one of the DataView's nodes.
  366.             var sourceEl = e.getTarget(v.itemSelector, 10);
  367. //          If the mousedown is within a DataView node, clone the node to produce
  368. //          a ddel element for use by the drag proxy. Also add application data
  369. //          to the returned data object.
  370.             if (sourceEl) {
  371.                 d = sourceEl.cloneNode(true);
  372.                 d.id = Ext.id();
  373.                 return {
  374.                     ddel: d,
  375.                     sourceEl: sourceEl,
  376.                     repairXY: Ext.fly(sourceEl).getXY(),
  377.                     sourceStore: v.store,
  378.                     draggedRecord: v.{@link Ext.DataView#getRecord getRecord}(sourceEl)
  379.                 }
  380.             }
  381.         },
  382. //      Provide coordinates for the proxy to slide back to on failed drag.
  383. //      This is the original XY coordinates of the draggable element captured
  384. //      in the getDragData method.
  385.         getRepairXY: function() {
  386.             return this.dragData.repairXY;
  387.         }
  388.     });
  389. });</code></pre>
  390.  * See the {@link Ext.dd.DropZone DropZone} documentation for details about building a DropZone which
  391.  * cooperates with this DragZone.
  392.  * @constructor
  393.  * @param {Mixed} el The container element
  394.  * @param {Object} config
  395.  */
  396. Ext.dd.DragZone = function(el, config){
  397.     Ext.dd.DragZone.superclass.constructor.call(this, el, config);
  398.     if(this.containerScroll){
  399.         Ext.dd.ScrollManager.register(this.el);
  400.     }
  401. };
  402. Ext.extend(Ext.dd.DragZone, Ext.dd.DragSource, {
  403.     /**
  404.      * This property contains the data representing the dragged object. This data is set up by the implementation
  405.      * of the {@link #getDragData} method. It must contain a <tt>ddel</tt> property, but can contain
  406.      * any other data according to the application's needs.
  407.      * @type Object
  408.      * @property dragData
  409.      */
  410.     /**
  411.      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
  412.      * for auto scrolling during drag operations.
  413.      */
  414.     /**
  415.      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
  416.      * method after a failed drop (defaults to "c3daf9" - light blue)
  417.      */
  418.     /**
  419.      * Called when a mousedown occurs in this container. Looks in {@link Ext.dd.Registry}
  420.      * for a valid target to drag based on the mouse down. Override this method
  421.      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
  422.      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
  423.      * @param {EventObject} e The mouse down event
  424.      * @return {Object} The dragData
  425.      */
  426.     getDragData : function(e){
  427.         return Ext.dd.Registry.getHandleFromEvent(e);
  428.     },
  429.     
  430.     /**
  431.      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
  432.      * this.dragData.ddel
  433.      * @param {Number} x The x position of the click on the dragged object
  434.      * @param {Number} y The y position of the click on the dragged object
  435.      * @return {Boolean} true to continue the drag, false to cancel
  436.      */
  437.     onInitDrag : function(x, y){
  438.         this.proxy.update(this.dragData.ddel.cloneNode(true));
  439.         this.onStartDrag(x, y);
  440.         return true;
  441.     },
  442.     
  443.     /**
  444.      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
  445.      */
  446.     afterRepair : function(){
  447.         if(Ext.enableFx){
  448.             Ext.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
  449.         }
  450.         this.dragging = false;
  451.     },
  452.     /**
  453.      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
  454.      * the XY of this.dragData.ddel
  455.      * @param {EventObject} e The mouse up event
  456.      * @return {Array} The xy location (e.g. [100, 200])
  457.      */
  458.     getRepairXY : function(e){
  459.         return Ext.Element.fly(this.dragData.ddel).getXY();  
  460.     }
  461. });/**
  462.  * @class Ext.dd.DropZone
  463.  * @extends Ext.dd.DropTarget
  464.  * <p>This class provides a container DD instance that allows dropping on multiple child target nodes.</p>
  465.  * <p>By default, this class requires that child nodes accepting drop are registered with {@link Ext.dd.Registry}.
  466.  * However a simpler way to allow a DropZone to manage any number of target elements is to configure the
  467.  * DropZone with an implementation of {@link #getTargetFromEvent} which interrogates the passed
  468.  * mouse event to see if it has taken place within an element, or class of elements. This is easily done
  469.  * by using the event's {@link Ext.EventObject#getTarget getTarget} method to identify a node based on a
  470.  * {@link Ext.DomQuery} selector.</p>
  471.  * <p>Once the DropZone has detected through calling getTargetFromEvent, that the mouse is over
  472.  * a drop target, that target is passed as the first parameter to {@link #onNodeEnter}, {@link #onNodeOver},
  473.  * {@link #onNodeOut}, {@link #onNodeDrop}. You may configure the instance of DropZone with implementations
  474.  * of these methods to provide application-specific behaviour for these events to update both
  475.  * application state, and UI state.</p>
  476.  * <p>For example to make a GridPanel a cooperating target with the example illustrated in
  477.  * {@link Ext.dd.DragZone DragZone}, the following technique might be used:</p><pre><code>
  478. myGridPanel.on('render', function() {
  479.     myGridPanel.dropZone = new Ext.dd.DropZone(myGridPanel.getView().scroller, {
  480. //      If the mouse is over a grid row, return that node. This is
  481. //      provided as the "target" parameter in all "onNodeXXXX" node event handling functions
  482.         getTargetFromEvent: function(e) {
  483.             return e.getTarget(myGridPanel.getView().rowSelector);
  484.         },
  485. //      On entry into a target node, highlight that node.
  486.         onNodeEnter : function(target, dd, e, data){ 
  487.             Ext.fly(target).addClass('my-row-highlight-class');
  488.         },
  489. //      On exit from a target node, unhighlight that node.
  490.         onNodeOut : function(target, dd, e, data){ 
  491.             Ext.fly(target).removeClass('my-row-highlight-class');
  492.         },
  493. //      While over a target node, return the default drop allowed class which
  494. //      places a "tick" icon into the drag proxy.
  495.         onNodeOver : function(target, dd, e, data){ 
  496.             return Ext.dd.DropZone.prototype.dropAllowed;
  497.         },
  498. //      On node drop we can interrogate the target to find the underlying
  499. //      application object that is the real target of the dragged data.
  500. //      In this case, it is a Record in the GridPanel's Store.
  501. //      We can use the data set up by the DragZone's getDragData method to read
  502. //      any data we decided to attach in the DragZone's getDragData method.
  503.         onNodeDrop : function(target, dd, e, data){
  504.             var rowIndex = myGridPanel.getView().findRowIndex(target);
  505.             var r = myGridPanel.getStore().getAt(rowIndex);
  506.             Ext.Msg.alert('Drop gesture', 'Dropped Record id ' + data.draggedRecord.id +
  507.                 ' on Record id ' + r.id);
  508.             return true;
  509.         }
  510.     });
  511. }
  512. </code></pre>
  513.  * See the {@link Ext.dd.DragZone DragZone} documentation for details about building a DragZone which
  514.  * cooperates with this DropZone.
  515.  * @constructor
  516.  * @param {Mixed} el The container element
  517.  * @param {Object} config
  518.  */
  519. Ext.dd.DropZone = function(el, config){
  520.     Ext.dd.DropZone.superclass.constructor.call(this, el, config);
  521. };
  522. Ext.extend(Ext.dd.DropZone, Ext.dd.DropTarget, {
  523.     /**
  524.      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
  525.      * this looks up the event target in the {@link Ext.dd.Registry}, although you can override this method to
  526.      * provide your own custom lookup.
  527.      * @param {Event} e The event
  528.      * @return {Object} data The custom data
  529.      */
  530.     getTargetFromEvent : function(e){
  531.         return Ext.dd.Registry.getTargetFromEvent(e);
  532.     },
  533.     /**
  534.      * Called when the DropZone determines that a {@link Ext.dd.DragSource} has entered a drop node
  535.      * that has either been registered or detected by a configured implementation of {@link #getTargetFromEvent}.
  536.      * This method has no default implementation and should be overridden to provide
  537.      * node-specific processing if necessary.
  538.      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
  539.      * {@link #getTargetFromEvent} for this node)
  540.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
  541.      * @param {Event} e The event
  542.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  543.      */
  544.     onNodeEnter : function(n, dd, e, data){
  545.         
  546.     },
  547.     /**
  548.      * Called while the DropZone determines that a {@link Ext.dd.DragSource} is over a drop node
  549.      * that has either been registered or detected by a configured implementation of {@link #getTargetFromEvent}.
  550.      * The default implementation returns this.dropNotAllowed, so it should be
  551.      * overridden to provide the proper feedback.
  552.      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
  553.      * {@link #getTargetFromEvent} for this node)
  554.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
  555.      * @param {Event} e The event
  556.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  557.      * @return {String} status The CSS class that communicates the drop status back to the source so that the
  558.      * underlying {@link Ext.dd.StatusProxy} can be updated
  559.      */
  560.     onNodeOver : function(n, dd, e, data){
  561.         return this.dropAllowed;
  562.     },
  563.     /**
  564.      * Called when the DropZone determines that a {@link Ext.dd.DragSource} has been dragged out of
  565.      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
  566.      * node-specific processing if necessary.
  567.      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
  568.      * {@link #getTargetFromEvent} for this node)
  569.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
  570.      * @param {Event} e The event
  571.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  572.      */
  573.     onNodeOut : function(n, dd, e, data){
  574.         
  575.     },
  576.     /**
  577.      * Called when the DropZone determines that a {@link Ext.dd.DragSource} has been dropped onto
  578.      * the drop node.  The default implementation returns false, so it should be overridden to provide the
  579.      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
  580.      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
  581.      * {@link #getTargetFromEvent} for this node)
  582.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
  583.      * @param {Event} e The event
  584.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  585.      * @return {Boolean} True if the drop was valid, else false
  586.      */
  587.     onNodeDrop : function(n, dd, e, data){
  588.         return false;
  589.     },
  590.     /**
  591.      * Called while the DropZone determines that a {@link Ext.dd.DragSource} is being dragged over it,
  592.      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
  593.      * it should be overridden to provide the proper feedback if necessary.
  594.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
  595.      * @param {Event} e The event
  596.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  597.      * @return {String} status The CSS class that communicates the drop status back to the source so that the
  598.      * underlying {@link Ext.dd.StatusProxy} can be updated
  599.      */
  600.     onContainerOver : function(dd, e, data){
  601.         return this.dropNotAllowed;
  602.     },
  603.     /**
  604.      * Called when the DropZone determines that a {@link Ext.dd.DragSource} has been dropped on it,
  605.      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
  606.      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
  607.      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
  608.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
  609.      * @param {Event} e The event
  610.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  611.      * @return {Boolean} True if the drop was valid, else false
  612.      */
  613.     onContainerDrop : function(dd, e, data){
  614.         return false;
  615.     },
  616.     /**
  617.      * The function a {@link Ext.dd.DragSource} calls once to notify this drop zone that the source is now over
  618.      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
  619.      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
  620.      * you should override this method and provide a custom implementation.
  621.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
  622.      * @param {Event} e The event
  623.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  624.      * @return {String} status The CSS class that communicates the drop status back to the source so that the
  625.      * underlying {@link Ext.dd.StatusProxy} can be updated
  626.      */
  627.     notifyEnter : function(dd, e, data){
  628.         return this.dropNotAllowed;
  629.     },
  630.     /**
  631.      * The function a {@link Ext.dd.DragSource} calls continuously while it is being dragged over the drop zone.
  632.      * This method will be called on every mouse movement while the drag source is over the drop zone.
  633.      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
  634.      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
  635.      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
  636.      * registered node, it will call {@link #onContainerOver}.
  637.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
  638.      * @param {Event} e The event
  639.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  640.      * @return {String} status The CSS class that communicates the drop status back to the source so that the
  641.      * underlying {@link Ext.dd.StatusProxy} can be updated
  642.      */
  643.     notifyOver : function(dd, e, data){
  644.         var n = this.getTargetFromEvent(e);
  645.         if(!n){ // not over valid drop target
  646.             if(this.lastOverNode){
  647.                 this.onNodeOut(this.lastOverNode, dd, e, data);
  648.                 this.lastOverNode = null;
  649.             }
  650.             return this.onContainerOver(dd, e, data);
  651.         }
  652.         if(this.lastOverNode != n){
  653.             if(this.lastOverNode){
  654.                 this.onNodeOut(this.lastOverNode, dd, e, data);
  655.             }
  656.             this.onNodeEnter(n, dd, e, data);
  657.             this.lastOverNode = n;
  658.         }
  659.         return this.onNodeOver(n, dd, e, data);
  660.     },
  661.     /**
  662.      * The function a {@link Ext.dd.DragSource} calls once to notify this drop zone that the source has been dragged
  663.      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
  664.      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
  665.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop target
  666.      * @param {Event} e The event
  667.      * @param {Object} data An object containing arbitrary data supplied by the drag zone
  668.      */
  669.     notifyOut : function(dd, e, data){
  670.         if(this.lastOverNode){
  671.             this.onNodeOut(this.lastOverNode, dd, e, data);
  672.             this.lastOverNode = null;
  673.         }
  674.     },
  675.     /**
  676.      * The function a {@link Ext.dd.DragSource} calls once to notify this drop zone that the dragged item has
  677.      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
  678.      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
  679.      * otherwise it will call {@link #onContainerDrop}.
  680.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
  681.      * @param {Event} e The event
  682.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  683.      * @return {Boolean} True if the drop was valid, else false
  684.      */
  685.     notifyDrop : function(dd, e, data){
  686.         if(this.lastOverNode){
  687.             this.onNodeOut(this.lastOverNode, dd, e, data);
  688.             this.lastOverNode = null;
  689.         }
  690.         var n = this.getTargetFromEvent(e);
  691.         return n ?
  692.             this.onNodeDrop(n, dd, e, data) :
  693.             this.onContainerDrop(dd, e, data);
  694.     },
  695.     // private
  696.     triggerCacheRefresh : function(){
  697.         Ext.dd.DDM.refreshCache(this.groups);
  698.     }  
  699. });/**
  700.  * @class Ext.Element
  701.  */
  702. Ext.Element.addMethods({
  703.     /**
  704.      * Initializes a {@link Ext.dd.DD} drag drop object for this element.
  705.      * @param {String} group The group the DD object is member of
  706.      * @param {Object} config The DD config object
  707.      * @param {Object} overrides An object containing methods to override/implement on the DD object
  708.      * @return {Ext.dd.DD} The DD object
  709.      */
  710.     initDD : function(group, config, overrides){
  711.         var dd = new Ext.dd.DD(Ext.id(this.dom), group, config);
  712.         return Ext.apply(dd, overrides);
  713.     },
  714.     /**
  715.      * Initializes a {@link Ext.dd.DDProxy} object for this element.
  716.      * @param {String} group The group the DDProxy object is member of
  717.      * @param {Object} config The DDProxy config object
  718.      * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
  719.      * @return {Ext.dd.DDProxy} The DDProxy object
  720.      */
  721.     initDDProxy : function(group, config, overrides){
  722.         var dd = new Ext.dd.DDProxy(Ext.id(this.dom), group, config);
  723.         return Ext.apply(dd, overrides);
  724.     },
  725.     /**
  726.      * Initializes a {@link Ext.dd.DDTarget} object for this element.
  727.      * @param {String} group The group the DDTarget object is member of
  728.      * @param {Object} config The DDTarget config object
  729.      * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
  730.      * @return {Ext.dd.DDTarget} The DDTarget object
  731.      */
  732.     initDDTarget : function(group, config, overrides){
  733.         var dd = new Ext.dd.DDTarget(Ext.id(this.dom), group, config);
  734.         return Ext.apply(dd, overrides);
  735.     }
  736. });