Element.dd.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.Element
  3.  */
  4. Ext.Element.addMethods({
  5.     /**
  6.      * Initializes a {@link Ext.dd.DD} drag drop object for this element.
  7.      * @param {String} group The group the DD object is member of
  8.      * @param {Object} config The DD config object
  9.      * @param {Object} overrides An object containing methods to override/implement on the DD object
  10.      * @return {Ext.dd.DD} The DD object
  11.      */
  12.     initDD : function(group, config, overrides){
  13.         var dd = new Ext.dd.DD(Ext.id(this.dom), group, config);
  14.         return Ext.apply(dd, overrides);
  15.     },
  16.     /**
  17.      * Initializes a {@link Ext.dd.DDProxy} object for this element.
  18.      * @param {String} group The group the DDProxy object is member of
  19.      * @param {Object} config The DDProxy config object
  20.      * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
  21.      * @return {Ext.dd.DDProxy} The DDProxy object
  22.      */
  23.     initDDProxy : function(group, config, overrides){
  24.         var dd = new Ext.dd.DDProxy(Ext.id(this.dom), group, config);
  25.         return Ext.apply(dd, overrides);
  26.     },
  27.     /**
  28.      * Initializes a {@link Ext.dd.DDTarget} object for this element.
  29.      * @param {String} group The group the DDTarget object is member of
  30.      * @param {Object} config The DDTarget config object
  31.      * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
  32.      * @return {Ext.dd.DDTarget} The DDTarget object
  33.      */
  34.     initDDTarget : function(group, config, overrides){
  35.         var dd = new Ext.dd.DDTarget(Ext.id(this.dom), group, config);
  36.         return Ext.apply(dd, overrides);
  37.     }
  38. });