X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/Panel.html diff --git a/docs/source/Panel.html b/docs/source/Panel.html index cd124ae3..5b3bddf1 100644 --- a/docs/source/Panel.html +++ b/docs/source/Panel.html @@ -1,5 +1,22 @@ -Sencha Documentation Project
/**
- * @class Ext.form.Panel
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
+ * @class Ext.form.Panel
  * @extends Ext.panel.Panel
 
 FormPanel provides a standard container for forms. It is essentially a standard {@link Ext.panel.Panel} which
@@ -118,9 +135,6 @@ __Example usage:__
         renderTo: Ext.getBody()
     });
 
- * @constructor
- * @param {Object} config Configuration options
- * @xtype form
  *
  * @markdown
  * @docauthor Jason Johnston <jason@sencha.com>
@@ -134,7 +148,7 @@ Ext.define('Ext.form.Panel', {
     alternateClassName: ['Ext.FormPanel', 'Ext.form.FormPanel'],
     requires: ['Ext.form.Basic', 'Ext.util.TaskRunner'],
 
-    /**
+    /**
      * @cfg {Boolean} pollForChanges
      * If set to <tt>true</tt>, sets up an interval task (using the {@link #pollInterval}) in which the 
      * panel's fields are repeatedly checked for changes in their values. This is in addition to the normal detection
@@ -143,13 +157,13 @@ Ext.define('Ext.form.Panel', {
      * do not fire native events. Defaults to <tt>false</tt>.
      */
 
-    /**
+    /**
      * @cfg {Number} pollInterval
      * Interval in milliseconds at which the form's fields are checked for value changes. Only used if
      * the {@link #pollForChanges} option is set to <tt>true</tt>. Defaults to 500 milliseconds.
      */
 
-    /**
+    /**
      * @cfg {String} layout The {@link Ext.container.Container#layout} for the form panel's immediate child items.
      * Defaults to <tt>'anchor'</tt>.
      */
@@ -190,14 +204,14 @@ Ext.define('Ext.form.Panel', {
         me.form.initialize();
     },
 
-    /**
+    /**
      * @private
      */
     createForm: function() {
         return Ext.create('Ext.form.Basic', this, Ext.applyIf({listeners: {}}, this.initialConfig));
     },
 
-    /**
+    /**
      * Provides access to the {@link Ext.form.Basic Form} which this Panel contains.
      * @return {Ext.form.Basic} The {@link Ext.form.Basic Form} which this Panel contains.
      */
@@ -205,7 +219,7 @@ Ext.define('Ext.form.Panel', {
         return this.form;
     },
     
-    /**
+    /**
      * Loads an {@link Ext.data.Model} into this form (internally just calls {@link Ext.form.Basic#loadRecord})
      * See also {@link #trackResetOnLoad}.
      * @param {Ext.data.Model} record The record to load
@@ -215,7 +229,7 @@ Ext.define('Ext.form.Panel', {
         return this.getForm().loadRecord(record);
     },
     
-    /**
+    /**
      * Returns the currently loaded Ext.data.Model instance if one was loaded via {@link #loadRecord}.
      * @return {Ext.data.Model} The loaded instance
      */
@@ -223,7 +237,7 @@ Ext.define('Ext.form.Panel', {
         return this.getForm().getRecord();
     },
     
-    /**
+    /**
      * Convenience function for fetching the current value of each field in the form. This is the same as calling
      * {@link Ext.form.Basic#getValues this.getForm().getValues()}
      * @return {Object} The current form field values, keyed by field name
@@ -238,7 +252,7 @@ Ext.define('Ext.form.Panel', {
         this.callParent();
     },
 
-    /**
+    /**
      * This is a proxy for the underlying BasicForm's {@link Ext.form.Basic#load} call.
      * @param {Object} options The options to pass to the action (see {@link Ext.form.Basic#load} and
      * {@link Ext.form.Basic#doAction} for details)
@@ -247,7 +261,7 @@ Ext.define('Ext.form.Panel', {
         this.form.load(options);
     },
 
-    /**
+    /**
      * This is a proxy for the underlying BasicForm's {@link Ext.form.Basic#submit} call.
      * @param {Object} options The options to pass to the action (see {@link Ext.form.Basic#submit} and
      * {@link Ext.form.Basic#doAction} for details)
@@ -278,7 +292,7 @@ Ext.define('Ext.form.Panel', {
         });
     },
 
-    /**
+    /**
      * Start an interval task to continuously poll all the fields in the form for changes in their
      * values. This is normally started automatically by setting the {@link #pollForChanges} config.
      * @param {Number} interval The interval in milliseconds at which the check should run.
@@ -294,7 +308,7 @@ Ext.define('Ext.form.Panel', {
         this.pollTask = task;
     },
 
-    /**
+    /**
      * Stop a running interval task that was started by {@link #startPolling}.
      */
     stopPolling: function() {
@@ -305,7 +319,7 @@ Ext.define('Ext.form.Panel', {
         }
     },
 
-    /**
+    /**
      * Forces each field within the form panel to 
      * {@link Ext.form.field.Field#checkChange check if its value has changed}.
      */
@@ -315,4 +329,6 @@ Ext.define('Ext.form.Panel', {
         });
     }
 });
-
\ No newline at end of file +
+ +