X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/Proxy.html diff --git a/docs/source/Proxy.html b/docs/source/Proxy.html index db12f1d0..9f4722ff 100644 --- a/docs/source/Proxy.html +++ b/docs/source/Proxy.html @@ -1,19 +1,38 @@ -Sencha Documentation Project
/**
- * @class Ext.panel.Proxy
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
+ * @class Ext.panel.Proxy
  * @extends Object
  * A custom drag proxy implementation specific to {@link Ext.panel.Panel}s. This class
  * is primarily used internally for the Panel's drag drop implementation, and
  * should never need to be created directly.
- * @constructor
- * @param panel The {@link Ext.panel.Panel} to proxy for
- * @param config Configuration options
  */
 Ext.define('Ext.panel.Proxy', {
     
     alternateClassName: 'Ext.dd.PanelProxy',
-    
+
+    /**
+     * Creates new panel proxy.
+     * @param {Ext.panel.Panel} panel The {@link Ext.panel.Panel} to proxy for
+     * @param {Object} config (optional) Config object
+     */
     constructor: function(panel, config){
-        /**
+        /**
          * @property panel
          * @type Ext.panel.Panel
          */
@@ -22,7 +41,7 @@ Ext.define('Ext.panel.Proxy', {
         Ext.apply(this, config);
     },
 
-    /**
+    /**
      * @cfg {Boolean} insertProxy True to insert a placeholder proxy element
      * while dragging the panel, false to drag with no proxy (defaults to true).
      * Most Panels are not absolute positioned and therefore we need to reserve
@@ -37,7 +56,7 @@ Ext.define('Ext.panel.Proxy', {
     stop: Ext.emptyFn,
     sync: Ext.emptyFn,
 
-    /**
+    /**
      * Gets the proxy's element
      * @return {Element} The proxy's element
      */
@@ -45,7 +64,7 @@ Ext.define('Ext.panel.Proxy', {
         return this.ghost.el;
     },
 
-    /**
+    /**
      * Gets the proxy's ghost Panel
      * @return {Panel} The proxy's ghost Panel
      */
@@ -53,7 +72,7 @@ Ext.define('Ext.panel.Proxy', {
         return this.ghost;
     },
 
-    /**
+    /**
      * Gets the proxy element. This is the element that represents where the
      * Panel was before we started the drag operation.
      * @return {Element} The proxy's element
@@ -62,7 +81,7 @@ Ext.define('Ext.panel.Proxy', {
         return this.proxy;
     },
 
-    /**
+    /**
      * Hides the proxy
      */
     hide : function(){
@@ -78,7 +97,7 @@ Ext.define('Ext.panel.Proxy', {
         }
     },
 
-    /**
+    /**
      * Shows the proxy
      */
     show: function(){
@@ -103,7 +122,7 @@ Ext.define('Ext.panel.Proxy', {
         }
     },
 
-    /**
+    /**
      * Moves the proxy to a different position in the DOM.  This is typically
      * called while dragging the Panel to keep the proxy sync'd to the Panel's
      * location.
@@ -117,4 +136,6 @@ Ext.define('Ext.panel.Proxy', {
             parentNode.insertBefore(this.proxy.dom, before);
         }
     }
-});
\ No newline at end of file +});
+ +