TreeDragZone.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:2k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.tree.TreeDragZone
  3.  * @extends Ext.dd.DragZone
  4.  * @constructor
  5.  * @param {String/HTMLElement/Element} tree The {@link Ext.tree.TreePanel} for which to enable dragging
  6.  * @param {Object} config
  7.  */
  8. if(Ext.dd.DragZone){
  9. Ext.tree.TreeDragZone = function(tree, config){
  10.     Ext.tree.TreeDragZone.superclass.constructor.call(this, tree.innerCt, config);
  11.     /**
  12.     * The TreePanel for this drag zone
  13.     * @type Ext.tree.TreePanel
  14.     * @property
  15.     */
  16.     this.tree = tree;
  17. };
  18. Ext.extend(Ext.tree.TreeDragZone, Ext.dd.DragZone, {
  19.     /**
  20.      * @cfg {String} ddGroup
  21.      * A named drag drop group to which this object belongs.  If a group is specified, then this object will only
  22.      * interact with other drag drop objects in the same group (defaults to 'TreeDD').
  23.      */
  24.     ddGroup : "TreeDD",
  25.     // private
  26.     onBeforeDrag : function(data, e){
  27.         var n = data.node;
  28.         return n && n.draggable && !n.disabled;
  29.     },
  30.     // private
  31.     onInitDrag : function(e){
  32.         var data = this.dragData;
  33.         this.tree.getSelectionModel().select(data.node);
  34.         this.tree.eventModel.disable();
  35.         this.proxy.update("");
  36.         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
  37.         this.tree.fireEvent("startdrag", this.tree, data.node, e);
  38.     },
  39.     // private
  40.     getRepairXY : function(e, data){
  41.         return data.node.ui.getDDRepairXY();
  42.     },
  43.     // private
  44.     onEndDrag : function(data, e){
  45.         this.tree.eventModel.enable.defer(100, this.tree.eventModel);
  46.         this.tree.fireEvent("enddrag", this.tree, data.node, e);
  47.     },
  48.     // private
  49.     onValidDrop : function(dd, e, id){
  50.         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
  51.         this.hideProxy();
  52.     },
  53.     // private
  54.     beforeInvalidDrop : function(e, id){
  55.         // this scrolls the original position back into view
  56.         var sm = this.tree.getSelectionModel();
  57.         sm.clearSelections();
  58.         sm.select(this.dragData.node);
  59.     },
  60.     
  61.     // private
  62.     afterRepair : function(){
  63.         if (Ext.enableFx && this.tree.hlDrop) {
  64.             Ext.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
  65.         }
  66.         this.dragging = false;
  67.     }
  68. });
  69. }