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

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ // private
  2. // This is a support class used internally by the Grid components
  3. Ext.grid.HeaderDragZone = function(grid, hd, hd2){
  4.     this.grid = grid;
  5.     this.view = grid.getView();
  6.     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
  7.     Ext.grid.HeaderDragZone.superclass.constructor.call(this, hd);
  8.     if(hd2){
  9.         this.setHandleElId(Ext.id(hd));
  10.         this.setOuterHandleElId(Ext.id(hd2));
  11.     }
  12.     this.scroll = false;
  13. };
  14. Ext.extend(Ext.grid.HeaderDragZone, Ext.dd.DragZone, {
  15.     maxDragWidth: 120,
  16.     getDragData : function(e){
  17.         var t = Ext.lib.Event.getTarget(e);
  18.         var h = this.view.findHeaderCell(t);
  19.         if(h){
  20.             return {ddel: h.firstChild, header:h};
  21.         }
  22.         return false;
  23.     },
  24.     onInitDrag : function(e){
  25.         this.view.headersDisabled = true;
  26.         var clone = this.dragData.ddel.cloneNode(true);
  27.         clone.id = Ext.id();
  28.         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
  29.         this.proxy.update(clone);
  30.         return true;
  31.     },
  32.     afterValidDrop : function(){
  33.         var v = this.view;
  34.         setTimeout(function(){
  35.             v.headersDisabled = false;
  36.         }, 50);
  37.     },
  38.     afterInvalidDrop : function(){
  39.         var v = this.view;
  40.         setTimeout(function(){
  41.             v.headersDisabled = false;
  42.         }, 50);
  43.     }
  44. });
  45. // private
  46. // This is a support class used internally by the Grid components
  47. Ext.grid.HeaderDropZone = function(grid, hd, hd2){
  48.     this.grid = grid;
  49.     this.view = grid.getView();
  50.     // split the proxies so they don't interfere with mouse events
  51.     this.proxyTop = Ext.DomHelper.append(document.body, {
  52.         cls:"col-move-top", html:" "
  53.     }, true);
  54.     this.proxyBottom = Ext.DomHelper.append(document.body, {
  55.         cls:"col-move-bottom", html:" "
  56.     }, true);
  57.     this.proxyTop.hide = this.proxyBottom.hide = function(){
  58.         this.setLeftTop(-100,-100);
  59.         this.setStyle("visibility", "hidden");
  60.     };
  61.     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
  62.     // temporarily disabled
  63.     //Ext.dd.ScrollManager.register(this.view.scroller.dom);
  64.     Ext.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
  65. };
  66. Ext.extend(Ext.grid.HeaderDropZone, Ext.dd.DropZone, {
  67.     proxyOffsets : [-4, -9],
  68.     fly: Ext.Element.fly,
  69.     getTargetFromEvent : function(e){
  70.         var t = Ext.lib.Event.getTarget(e);
  71.         var cindex = this.view.findCellIndex(t);
  72.         if(cindex !== false){
  73.             return this.view.getHeaderCell(cindex);
  74.         }
  75.     },
  76.     nextVisible : function(h){
  77.         var v = this.view, cm = this.grid.colModel;
  78.         h = h.nextSibling;
  79.         while(h){
  80.             if(!cm.isHidden(v.getCellIndex(h))){
  81.                 return h;
  82.             }
  83.             h = h.nextSibling;
  84.         }
  85.         return null;
  86.     },
  87.     prevVisible : function(h){
  88.         var v = this.view, cm = this.grid.colModel;
  89.         h = h.prevSibling;
  90.         while(h){
  91.             if(!cm.isHidden(v.getCellIndex(h))){
  92.                 return h;
  93.             }
  94.             h = h.prevSibling;
  95.         }
  96.         return null;
  97.     },
  98.     positionIndicator : function(h, n, e){
  99.         var x = Ext.lib.Event.getPageX(e);
  100.         var r = Ext.lib.Dom.getRegion(n.firstChild);
  101.         var px, pt, py = r.top + this.proxyOffsets[1];
  102.         if((r.right - x) <= (r.right-r.left)/2){
  103.             px = r.right+this.view.borderWidth;
  104.             pt = "after";
  105.         }else{
  106.             px = r.left;
  107.             pt = "before";
  108.         }
  109.         if(this.grid.colModel.isFixed(this.view.getCellIndex(n))){
  110.             return false;
  111.         }
  112.         px +=  this.proxyOffsets[0];
  113.         this.proxyTop.setLeftTop(px, py);
  114.         this.proxyTop.show();
  115.         if(!this.bottomOffset){
  116.             this.bottomOffset = this.view.mainHd.getHeight();
  117.         }
  118.         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
  119.         this.proxyBottom.show();
  120.         return pt;
  121.     },
  122.     onNodeEnter : function(n, dd, e, data){
  123.         if(data.header != n){
  124.             this.positionIndicator(data.header, n, e);
  125.         }
  126.     },
  127.     onNodeOver : function(n, dd, e, data){
  128.         var result = false;
  129.         if(data.header != n){
  130.             result = this.positionIndicator(data.header, n, e);
  131.         }
  132.         if(!result){
  133.             this.proxyTop.hide();
  134.             this.proxyBottom.hide();
  135.         }
  136.         return result ? this.dropAllowed : this.dropNotAllowed;
  137.     },
  138.     onNodeOut : function(n, dd, e, data){
  139.         this.proxyTop.hide();
  140.         this.proxyBottom.hide();
  141.     },
  142.     onNodeDrop : function(n, dd, e, data){
  143.         var h = data.header;
  144.         if(h != n){
  145.             var cm = this.grid.colModel;
  146.             var x = Ext.lib.Event.getPageX(e);
  147.             var r = Ext.lib.Dom.getRegion(n.firstChild);
  148.             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
  149.             var oldIndex = this.view.getCellIndex(h);
  150.             var newIndex = this.view.getCellIndex(n);
  151.             if(pt == "after"){
  152.                 newIndex++;
  153.             }
  154.             if(oldIndex < newIndex){
  155.                 newIndex--;
  156.             }
  157.             cm.moveColumn(oldIndex, newIndex);
  158.             this.grid.fireEvent("columnmove", oldIndex, newIndex);
  159.             return true;
  160.         }
  161.         return false;
  162.     }
  163. });
  164. Ext.grid.GridView.ColumnDragZone = function(grid, hd){
  165.     Ext.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
  166.     this.proxy.el.addClass('x-grid3-col-dd');
  167. };
  168. Ext.extend(Ext.grid.GridView.ColumnDragZone, Ext.grid.HeaderDragZone, {
  169.     handleMouseDown : function(e){
  170.     },
  171.     callHandleMouseDown : function(e){
  172.         Ext.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
  173.     }
  174. });