Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / source / Base.html
index 7ce544d..aa76c13 100644 (file)
@@ -3,8 +3,8 @@
 <head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <title>The source code</title>
-  <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
-  <script type="text/javascript" src="../prettify/prettify.js"></script>
+  <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
+  <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
   <style type="text/css">
     .highlight { display: block; background-color: #ddd; }
   </style>
 </head>
 <body onload="prettyPrint(); highlight();">
   <pre class="prettyprint lang-js"><span id='Ext-form-field-Base'>/**
-</span> * @class Ext.form.field.Base
- * @extends Ext.Component
-
-Base class for form fields that provides default event handling, rendering, and other common functionality
-needed by all form field types. Utilizes the {@link Ext.form.field.Field} mixin for value handling and validation,
-and the {@link Ext.form.Labelable} mixin to provide label and error message display.
-
-In most cases you will want to use a subclass, such as {@link Ext.form.field.Text} or {@link Ext.form.field.Checkbox},
-rather than creating instances of this class directly. However if you are implementing a custom form field,
-using this as the parent class is recommended.
-
-__Values and Conversions__
-
-Because BaseField implements the Field mixin, it has a main value that can be initialized with the
-{@link #value} config and manipulated via the {@link #getValue} and {@link #setValue} methods. This main
-value can be one of many data types appropriate to the current field, for instance a {@link Ext.form.field.Date Date}
-field would use a JavaScript Date object as its value type. However, because the field is rendered as a HTML
-input, this value data type can not always be directly used in the rendered field.
-
-Therefore BaseField introduces the concept of a &quot;raw value&quot;. This is the value of the rendered HTML input field,
-and is normally a String. The {@link #getRawValue} and {@link #setRawValue} methods can be used to directly
-work with the raw value, though it is recommended to use getValue and setValue in most cases.
-
-Conversion back and forth between the main value and the raw value is handled by the {@link #valueToRaw} and
-{@link #rawToValue} methods. If you are implementing a subclass that uses a non-String value data type, you
-should override these methods to handle the conversion.
-
-__Rendering__
-
-The content of the field body is defined by the {@link #fieldSubTpl} XTemplate, with its argument data
-created by the {@link #getSubTplData} method. Override this template and/or method to create custom
-field renderings.
-{@img Ext.form.BaseField/Ext.form.BaseField.png Ext.form.BaseField BaseField component}
-__Example usage:__
-
-    // A simple subclass of BaseField that creates a HTML5 search field. Redirects to the
-    // searchUrl when the Enter key is pressed.
-    Ext.define('Ext.form.SearchField', {
-        extend: 'Ext.form.field.Base',
-        alias: 'widget.searchfield',
-    
-        inputType: 'search',
-    
-        // Config defining the search URL
-        searchUrl: 'http://www.google.com/search?q={0}',
-    
-        // Add specialkey listener
-        initComponent: function() {
-            this.callParent();
-            this.on('specialkey', this.checkEnterKey, this);
-        },
-    
-        // Handle enter key presses, execute the search if the field has a value
-        checkEnterKey: function(field, e) {
-            var value = this.getValue();
-            if (e.getKey() === e.ENTER &amp;&amp; !Ext.isEmpty(value)) {
-                location.href = Ext.String.format(this.searchUrl, value);
-            }
-        }
-    });
-
-    Ext.create('Ext.form.Panel', {
-        title: 'BaseField Example',
-        bodyPadding: 5,
-        width: 250,
-                
-        // Fields will be arranged vertically, stretched to full width
-        layout: 'anchor',
-        defaults: {
-            anchor: '100%'
-        },
-        items: [{
-            xtype: 'searchfield',
-            fieldLabel: 'Search',
-            name: 'query'
-        }]
-        renderTo: Ext.getBody()
-    });
-
+</span> * @docauthor Jason Johnston &lt;jason@sencha.com&gt;
+ *
+ * Base class for form fields that provides default event handling, rendering, and other common functionality
+ * needed by all form field types. Utilizes the {@link Ext.form.field.Field} mixin for value handling and validation,
+ * and the {@link Ext.form.Labelable} mixin to provide label and error message display.
+ *
+ * In most cases you will want to use a subclass, such as {@link Ext.form.field.Text} or {@link Ext.form.field.Checkbox},
+ * rather than creating instances of this class directly. However if you are implementing a custom form field,
+ * using this as the parent class is recommended.
+ *
+ * # Values and Conversions
+ *
+ * Because BaseField implements the Field mixin, it has a main value that can be initialized with the
+ * {@link #value} config and manipulated via the {@link #getValue} and {@link #setValue} methods. This main
+ * value can be one of many data types appropriate to the current field, for instance a {@link Ext.form.field.Date Date}
+ * field would use a JavaScript Date object as its value type. However, because the field is rendered as a HTML
+ * input, this value data type can not always be directly used in the rendered field.
  *
- * @markdown
- * @docauthor Jason Johnston &lt;jason@sencha.com&gt;
+ * Therefore BaseField introduces the concept of a &quot;raw value&quot;. This is the value of the rendered HTML input field,
+ * and is normally a String. The {@link #getRawValue} and {@link #setRawValue} methods can be used to directly
+ * work with the raw value, though it is recommended to use getValue and setValue in most cases.
+ *
+ * Conversion back and forth between the main value and the raw value is handled by the {@link #valueToRaw} and
+ * {@link #rawToValue} methods. If you are implementing a subclass that uses a non-String value data type, you
+ * should override these methods to handle the conversion.
+ *
+ * # Rendering
+ *
+ * The content of the field body is defined by the {@link #fieldSubTpl} XTemplate, with its argument data
+ * created by the {@link #getSubTplData} method. Override this template and/or method to create custom
+ * field renderings.
+ *
+ * # Example usage:
+ *
+ *     @example
+ *     // A simple subclass of BaseField that creates a HTML5 search field. Redirects to the
+ *     // searchUrl when the Enter key is pressed.222
+ *     Ext.define('Ext.form.SearchField', {
+ *         extend: 'Ext.form.field.Base',
+ *         alias: 'widget.searchfield',
+ *     
+ *         inputType: 'search',
+ *     
+ *         // Config defining the search URL
+ *         searchUrl: 'http://www.google.com/search?q={0}',
+ *     
+ *         // Add specialkey listener
+ *         initComponent: function() {
+ *             this.callParent();
+ *             this.on('specialkey', this.checkEnterKey, this);
+ *         },
+ *     
+ *         // Handle enter key presses, execute the search if the field has a value
+ *         checkEnterKey: function(field, e) {
+ *             var value = this.getValue();
+ *             if (e.getKey() === e.ENTER &amp;&amp; !Ext.isEmpty(value)) {
+ *                 location.href = Ext.String.format(this.searchUrl, value);
+ *             }
+ *         }
+ *     });
+ *     
+ *     Ext.create('Ext.form.Panel', {
+ *         title: 'BaseField Example',
+ *         bodyPadding: 5,
+ *         width: 250,
+ *     
+ *         // Fields will be arranged vertically, stretched to full width
+ *         layout: 'anchor',
+ *         defaults: {
+ *             anchor: '100%'
+ *         },
+ *         items: [{
+ *             xtype: 'searchfield',
+ *             fieldLabel: 'Search',
+ *             name: 'query'
+ *         }],
+ *         renderTo: Ext.getBody()
+ *     });
  */
 Ext.define('Ext.form.field.Base', {
     extend: 'Ext.Component',
@@ -109,7 +105,11 @@ Ext.define('Ext.form.field.Base', {
     alternateClassName: ['Ext.form.Field', 'Ext.form.BaseField'],
     requires: ['Ext.util.DelayedTask', 'Ext.XTemplate', 'Ext.layout.component.field.Field'],
 
-    fieldSubTpl: [
+<span id='Ext-form-field-Base-cfg-fieldSubTpl'>    /**
+</span>     * @cfg {Ext.XTemplate} fieldSubTpl
+     * The content of the field body is defined by this config option.
+     */
+    fieldSubTpl: [ // note: {id} here is really {inputId}, but {cmpId} is available
         '&lt;input id=&quot;{id}&quot; type=&quot;{type}&quot; ',
         '&lt;tpl if=&quot;name&quot;&gt;name=&quot;{name}&quot; &lt;/tpl&gt;',
         '&lt;tpl if=&quot;size&quot;&gt;size=&quot;{size}&quot; &lt;/tpl&gt;',
@@ -122,74 +122,80 @@ Ext.define('Ext.form.field.Base', {
     ],
 
 <span id='Ext-form-field-Base-cfg-name'>    /**
-</span>     * @cfg {String} name The name of the field (defaults to undefined). This is used as the parameter
-     * name when including the field value in a {@link Ext.form.Basic#submit form submit()}. If no name is
-     * configured, it falls back to the {@link #inputId}. To prevent the field from being included in the
-     * form submit, set {@link #submitValue} to &lt;tt&gt;false&lt;/tt&gt;.
+</span>     * @cfg {String} name
+     * The name of the field. This is used as the parameter name when including the field value
+     * in a {@link Ext.form.Basic#submit form submit()}. If no name is configured, it falls back to the {@link #inputId}.
+     * To prevent the field from being included in the form submit, set {@link #submitValue} to false.
      */
 
 <span id='Ext-form-field-Base-cfg-inputType'>    /**
 </span>     * @cfg {String} inputType
-     * &lt;p&gt;The type attribute for input fields -- e.g. radio, text, password, file (defaults to &lt;tt&gt;'text'&lt;/tt&gt;).
-     * The extended types supported by HTML5 inputs (url, email, etc.) may also be used, though using them
-     * will cause older browsers to fall back to 'text'.&lt;/p&gt;
-     * &lt;p&gt;The type 'password' must be used to render that field type currently -- there is no separate Ext
-     * component for that. You can use {@link Ext.form.field.File} which creates a custom-rendered file upload
-     * field, but if you want a plain unstyled file input you can use a BaseField with inputType:'file'.&lt;/p&gt;
+     * The type attribute for input fields -- e.g. radio, text, password, file. The extended types
+     * supported by HTML5 inputs (url, email, etc.) may also be used, though using them will cause older browsers to
+     * fall back to 'text'.
+     *
+     * The type 'password' must be used to render that field type currently -- there is no separate Ext component for
+     * that. You can use {@link Ext.form.field.File} which creates a custom-rendered file upload field, but if you want
+     * a plain unstyled file input you can use a BaseField with inputType:'file'.
      */
     inputType: 'text',
 
 <span id='Ext-form-field-Base-cfg-tabIndex'>    /**
-</span>     * @cfg {Number} tabIndex The tabIndex for this field. Note this only applies to fields that are rendered,
-     * not those which are built via applyTo (defaults to undefined).
+</span>     * @cfg {Number} tabIndex
+     * The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via
+     * applyTo
      */
 
 <span id='Ext-form-field-Base-cfg-invalidText'>    /**
-</span>     * @cfg {String} invalidText The error text to use when marking a field invalid and no message is provided
-     * (defaults to 'The value in this field is invalid')
+</span>     * @cfg {String} invalidText
+     * The error text to use when marking a field invalid and no message is provided
      */
     invalidText : 'The value in this field is invalid',
 
 <span id='Ext-form-field-Base-cfg-fieldCls'>    /**
-</span>     * @cfg {String} fieldCls The default CSS class for the field input (defaults to 'x-form-field')
+</span>     * @cfg {String} [fieldCls='x-form-field']
+     * The default CSS class for the field input
      */
     fieldCls : Ext.baseCSSPrefix + 'form-field',
 
 <span id='Ext-form-field-Base-cfg-fieldStyle'>    /**
-</span>     * @cfg {String} fieldStyle Optional CSS style(s) to be applied to the {@link #inputEl field input element}.
-     * Should be a valid argument to {@link Ext.core.Element#applyStyles}. Defaults to undefined. See also the
-     * {@link #setFieldStyle} method for changing the style after initialization.
+</span>     * @cfg {String} fieldStyle
+     * Optional CSS style(s) to be applied to the {@link #inputEl field input element}. Should be a valid argument to
+     * {@link Ext.Element#applyStyles}. Defaults to undefined. See also the {@link #setFieldStyle} method for changing
+     * the style after initialization.
      */
 
 <span id='Ext-form-field-Base-cfg-focusCls'>    /**
-</span>     * @cfg {String} focusCls The CSS class to use when the field receives focus (defaults to 'x-form-focus')
+</span>     * @cfg {String} [focusCls='x-form-focus']
+     * The CSS class to use when the field receives focus
      */
     focusCls : Ext.baseCSSPrefix + 'form-focus',
 
 <span id='Ext-form-field-Base-cfg-dirtyCls'>    /**
-</span>     * @cfg {String} dirtyCls The CSS class to use when the field value {@link #isDirty is dirty}.
+</span>     * @cfg {String} dirtyCls
+     * The CSS class to use when the field value {@link #isDirty is dirty}.
      */
     dirtyCls : Ext.baseCSSPrefix + 'form-dirty',
 
 <span id='Ext-form-field-Base-cfg-checkChangeEvents'>    /**
-</span>     * @cfg {Array} checkChangeEvents
-     * &lt;p&gt;A list of event names that will be listened for on the field's {@link #inputEl input element}, which
-     * will cause the field's value to be checked for changes. If a change is detected, the
-     * {@link #change change event} will be fired, followed by validation if the {@link #validateOnChange}
-     * option is enabled.&lt;/p&gt;
-     * &lt;p&gt;Defaults to &lt;tt&gt;['change', 'propertychange']&lt;/tt&gt; in Internet Explorer, and &lt;tt&gt;['change', 'input',
-     * 'textInput', 'keyup', 'dragdrop']&lt;/tt&gt; in other browsers. This catches all the ways that field values
-     * can be changed in most supported browsers; the only known exceptions at the time of writing are:&lt;/p&gt;
-     * &lt;ul&gt;
-     * &lt;li&gt;Safari 3.2 and older: cut/paste in textareas via the context menu, and dragging text into textareas&lt;/li&gt;
-     * &lt;li&gt;Opera 10 and 11: dragging text into text fields and textareas, and cut via the context menu in text
-     * fields and textareas&lt;/li&gt;
-     * &lt;li&gt;Opera 9: Same as Opera 10 and 11, plus paste from context menu in text fields and textareas&lt;/li&gt;
-     * &lt;/ul&gt;
-     * &lt;p&gt;If you need to guarantee on-the-fly change notifications including these edge cases, you can call the
-     * {@link #checkChange} method on a repeating interval, e.g. using {@link Ext.TaskManager}, or if the field is
-     * within a {@link Ext.form.Panel}, you can use the FormPanel's {@link Ext.form.Panel#pollForChanges}
-     * configuration to set up such a task automatically.&lt;/p&gt;
+</span>     * @cfg {String[]} checkChangeEvents
+     * A list of event names that will be listened for on the field's {@link #inputEl input element}, which will cause
+     * the field's value to be checked for changes. If a change is detected, the {@link #change change event} will be
+     * fired, followed by validation if the {@link #validateOnChange} option is enabled.
+     *
+     * Defaults to ['change', 'propertychange'] in Internet Explorer, and ['change', 'input', 'textInput', 'keyup',
+     * 'dragdrop'] in other browsers. This catches all the ways that field values can be changed in most supported
+     * browsers; the only known exceptions at the time of writing are:
+     *
+     *   - Safari 3.2 and older: cut/paste in textareas via the context menu, and dragging text into textareas
+     *   - Opera 10 and 11: dragging text into text fields and textareas, and cut via the context menu in text fields
+     *     and textareas
+     *   - Opera 9: Same as Opera 10 and 11, plus paste from context menu in text fields and textareas
+     *
+     * If you need to guarantee on-the-fly change notifications including these edge cases, you can call the
+     * {@link #checkChange} method on a repeating interval, e.g. using {@link Ext.TaskManager}, or if the field is within
+     * a {@link Ext.form.Panel}, you can use the FormPanel's {@link Ext.form.Panel#pollForChanges} configuration to set up
+     * such a task automatically.
      */
     checkChangeEvents: Ext.isIE &amp;&amp; (!document.documentMode || document.documentMode &lt; 9) ?
                         ['change', 'propertychange'] :
@@ -205,40 +211,40 @@ Ext.define('Ext.form.field.Base', {
     componentLayout: 'field',
 
 <span id='Ext-form-field-Base-cfg-readOnly'>    /**
-</span>     * @cfg {Boolean} readOnly &lt;tt&gt;true&lt;/tt&gt; to mark the field as readOnly in HTML
-     * (defaults to &lt;tt&gt;false&lt;/tt&gt;).
-     * &lt;br&gt;&lt;p&gt;&lt;b&gt;Note&lt;/b&gt;: this only sets the element's readOnly DOM attribute.
-     * Setting &lt;code&gt;readOnly=true&lt;/code&gt;, for example, will not disable triggering a
-     * ComboBox or Date; it gives you the option of forcing the user to choose
-     * via the trigger without typing in the text box. To hide the trigger use
-     * &lt;code&gt;{@link Ext.form.field.Trigger#hideTrigger hideTrigger}&lt;/code&gt;.&lt;/p&gt;
+</span>     * @cfg {Boolean} readOnly
+     * true to mark the field as readOnly in HTML.
+     *
+     * **Note**: this only sets the element's readOnly DOM attribute. Setting `readOnly=true`, for example, will not
+     * disable triggering a ComboBox or Date; it gives you the option of forcing the user to choose via the trigger
+     * without typing in the text box. To hide the trigger use `{@link Ext.form.field.Trigger#hideTrigger hideTrigger}`.
      */
     readOnly : false,
 
 <span id='Ext-form-field-Base-cfg-readOnlyCls'>    /**
-</span>     * @cfg {String} readOnlyCls The CSS class applied to the component's main element when it is {@link #readOnly}.
+</span>     * @cfg {String} readOnlyCls
+     * The CSS class applied to the component's main element when it is {@link #readOnly}.
      */
     readOnlyCls: Ext.baseCSSPrefix + 'form-readonly',
 
 <span id='Ext-form-field-Base-cfg-inputId'>    /**
 </span>     * @cfg {String} inputId
-     * The id that will be given to the generated input DOM element. Defaults to an automatically generated id.
-     * If you configure this manually, you must make sure it is unique in the document.
+     * The id that will be given to the generated input DOM element. Defaults to an automatically generated id. If you
+     * configure this manually, you must make sure it is unique in the document.
      */
 
 <span id='Ext-form-field-Base-cfg-validateOnBlur'>    /**
 </span>     * @cfg {Boolean} validateOnBlur
-     * Whether the field should validate when it loses focus (defaults to &lt;tt&gt;true&lt;/tt&gt;). This will cause fields
-     * to be validated as the user steps through the fields in the form regardless of whether they are making
-     * changes to those fields along the way. See also {@link #validateOnChange}.
+     * Whether the field should validate when it loses focus. This will cause fields to be validated
+     * as the user steps through the fields in the form regardless of whether they are making changes to those fields
+     * along the way. See also {@link #validateOnChange}.
      */
     validateOnBlur: true,
 
     // private
     hasFocus : false,
-    
+
     baseCls: Ext.baseCSSPrefix + 'field',
-    
+
     maskOnDisable: false,
 
     // private
@@ -264,34 +270,34 @@ Ext.define('Ext.form.field.Base', {
             'blur',
 <span id='Ext-form-field-Base-event-specialkey'>            /**
 </span>             * @event specialkey
-             * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.
-             * To handle other keys see {@link Ext.panel.Panel#keys} or {@link Ext.util.KeyMap}.
-             * You can check {@link Ext.EventObject#getKey} to determine which key was pressed.
-             * For example: &lt;pre&gt;&lt;code&gt;
-var form = new Ext.form.Panel({
-    ...
-    items: [{
-            fieldLabel: 'Field 1',
-            name: 'field1',
-            allowBlank: false
-        },{
-            fieldLabel: 'Field 2',
-            name: 'field2',
-            listeners: {
-                specialkey: function(field, e){
-                    // e.HOME, e.END, e.PAGE_UP, e.PAGE_DOWN,
-                    // e.TAB, e.ESC, arrow keys: e.LEFT, e.RIGHT, e.UP, e.DOWN
-                    if (e.{@link Ext.EventObject#getKey getKey()} == e.ENTER) {
-                        var form = field.up('form').getForm();
-                        form.submit();
-                    }
-                }
-            }
-        }
-    ],
-    ...
-});
-             * &lt;/code&gt;&lt;/pre&gt;
+             * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed. To handle other keys
+             * see {@link Ext.util.KeyMap}. You can check {@link Ext.EventObject#getKey} to determine which key was
+             * pressed. For example:
+             *
+             *     var form = new Ext.form.Panel({
+             *         ...
+             *         items: [{
+             *                 fieldLabel: 'Field 1',
+             *                 name: 'field1',
+             *                 allowBlank: false
+             *             },{
+             *                 fieldLabel: 'Field 2',
+             *                 name: 'field2',
+             *                 listeners: {
+             *                     specialkey: function(field, e){
+             *                         // e.HOME, e.END, e.PAGE_UP, e.PAGE_DOWN,
+             *                         // e.TAB, e.ESC, arrow keys: e.LEFT, e.RIGHT, e.UP, e.DOWN
+             *                         if (e.{@link Ext.EventObject#getKey getKey()} == e.ENTER) {
+             *                             var form = field.up('form').getForm();
+             *                             form.submit();
+             *                         }
+             *                     }
+             *                 }
+             *             }
+             *         ],
+             *         ...
+             *     });
+             *
              * @param {Ext.form.field.Base} this
              * @param {Ext.EventObject} e The event object
              */
@@ -309,16 +315,17 @@ var form = new Ext.form.Panel({
     },
 
 <span id='Ext-form-field-Base-method-getInputId'>    /**
-</span>     * Returns the input id for this field. If none was specified via the {@link #inputId} config,
-     * then an id will be automatically generated.
+</span>     * Returns the input id for this field. If none was specified via the {@link #inputId} config, then an id will be
+     * automatically generated.
      */
     getInputId: function() {
         return this.inputId || (this.inputId = Ext.id());
     },
 
 <span id='Ext-form-field-Base-method-getSubTplData'>    /**
-</span>     * @protected Creates and returns the data object to be used when rendering the {@link #fieldSubTpl}.
+</span>     * Creates and returns the data object to be used when rendering the {@link #fieldSubTpl}.
      * @return {Object} The template data
+     * @template
      */
     getSubTplData: function() {
         var me = this,
@@ -327,6 +334,7 @@ var form = new Ext.form.Panel({
 
         return Ext.applyIf(me.subTplData, {
             id: inputId,
+            cmpId: me.id,
             name: me.name || inputId,
             type: type,
             size: me.size || 20,
@@ -337,10 +345,16 @@ var form = new Ext.form.Panel({
         });
     },
 
+    afterRender: function() {
+        this.callParent();
+        
+        if (this.inputEl) {
+            this.inputEl.selectable();
+        }
+    },
+
 <span id='Ext-form-field-Base-method-getSubTplMarkup'>    /**
-</span>     * @protected
-     * Gets the markup to be inserted into the outer template's bodyEl. For fields this is the
-     * actual input element.
+</span>     * Gets the markup to be inserted into the outer template's bodyEl. For fields this is the actual input element.
      */
     getSubTplMarkup: function() {
         return this.getTpl('fieldSubTpl').apply(this.getSubTplData());
@@ -360,8 +374,8 @@ var form = new Ext.form.Panel({
 
 <span id='Ext-form-field-Base-method-setFieldStyle'>    /**
 </span>     * Set the {@link #fieldStyle CSS style} of the {@link #inputEl field input element}.
-     * @param {String/Object/Function} style The style(s) to apply. Should be a valid argument to
-     * {@link Ext.core.Element#applyStyles}.
+     * @param {String/Object/Function} style The style(s) to apply. Should be a valid argument to {@link
+     * Ext.Element#applyStyles}.
      */
     setFieldStyle: function(style) {
         var me = this,
@@ -375,19 +389,15 @@ var form = new Ext.form.Panel({
     // private
     onRender : function() {
         var me = this,
-            fieldStyle = me.fieldStyle,
-            renderSelectors = me.renderSelectors;
+            fieldStyle = me.fieldStyle;
 
-        Ext.applyIf(renderSelectors, me.getLabelableSelectors());
+        me.onLabelableRender();
 
-        Ext.applyIf(renderSelectors, {
-<span id='Ext-form-field-Base-property-inputEl'>            /**
-</span>             * @property inputEl
-             * @type Ext.core.Element
-             * The input Element for this Field. Only available after the field has been rendered.
-             */
-            inputEl: '.' + me.fieldCls
-        });
+<span id='Ext-form-field-Base-property-inputEl'>        /**
+</span>         * @property {Ext.Element} inputEl
+         * The input Element for this Field. Only available after the field has been rendered.
+         */
+        me.addChildEls({ name: 'inputEl', id: me.getInputId() });
 
         me.callParent(arguments);
 
@@ -451,21 +461,22 @@ var form = new Ext.form.Panel({
     },
 
 <span id='Ext-form-field-Base-method-getSubmitValue'>    /**
-</span>     * &lt;p&gt;Returns the value that would be included in a standard form submit for this field. This will be combined
-     * with the field's name to form a &lt;tt&gt;name=value&lt;/tt&gt; pair in the {@link #getSubmitData submitted parameters}.
-     * If an empty string is returned then just the &lt;tt&gt;name=&lt;/tt&gt; will be submitted; if &lt;tt&gt;null&lt;/tt&gt; is returned
-     * then nothing will be submitted.&lt;/p&gt;
-     * &lt;p&gt;Note that the value returned will have been {@link #processRawValue processed} but may or may not have
-     * been successfully {@link #validate validated}.&lt;/p&gt;
-     * @return {String} The value to be submitted, or &lt;tt&gt;null&lt;/tt&gt;.
+</span>     * Returns the value that would be included in a standard form submit for this field. This will be combined with the
+     * field's name to form a name=value pair in the {@link #getSubmitData submitted parameters}. If an empty string is
+     * returned then just the name= will be submitted; if null is returned then nothing will be submitted.
+     *
+     * Note that the value returned will have been {@link #processRawValue processed} but may or may not have been
+     * successfully {@link #validate validated}.
+     *
+     * @return {String} The value to be submitted, or null.
      */
     getSubmitValue: function() {
         return this.processRawValue(this.getRawValue());
     },
 
 <span id='Ext-form-field-Base-method-getRawValue'>    /**
-</span>     * Returns the raw value of the field, without performing any normalization, conversion, or validation.
-     * To get a normalized and converted value see {@link #getValue}.
+</span>     * Returns the raw value of the field, without performing any normalization, conversion, or validation. To get a
+     * normalized and converted value see {@link #getValue}.
      * @return {String} value The raw String value of the field
      */
     getRawValue: function() {
@@ -478,8 +489,8 @@ var form = new Ext.form.Panel({
 <span id='Ext-form-field-Base-method-setRawValue'>    /**
 </span>     * Sets the field's raw value directly, bypassing {@link #valueToRaw value conversion}, change detection, and
      * validation. To set the value with these additional inspections see {@link #setValue}.
-     * @param {Mixed} value The value to set
-     * @return {Mixed} value The field value that is set
+     * @param {Object} value The value to set
+     * @return {Object} value The field value that is set
      */
     setRawValue: function(value) {
         var me = this;
@@ -494,41 +505,49 @@ var form = new Ext.form.Panel({
     },
 
 <span id='Ext-form-field-Base-method-valueToRaw'>    /**
-</span>     * &lt;p&gt;Converts a mixed-type value to a raw representation suitable for displaying in the field. This allows
-     * controlling how value objects passed to {@link #setValue} are shown to the user, including localization.
-     * For instance, for a {@link Ext.form.field.Date}, this would control how a Date object passed to {@link #setValue}
-     * would be converted to a String for display in the field.&lt;/p&gt;
-     * &lt;p&gt;See {@link #rawToValue} for the opposite conversion.&lt;/p&gt;
-     * &lt;p&gt;The base implementation simply does a standard toString conversion, and converts
-     * {@link Ext#isEmpty empty values} to an empty string.&lt;/p&gt;
-     * @param {Mixed} value The mixed-type value to convert to the raw representation.
-     * @return {Mixed} The converted raw value.
+</span>     * Converts a mixed-type value to a raw representation suitable for displaying in the field. This allows controlling
+     * how value objects passed to {@link #setValue} are shown to the user, including localization. For instance, for a
+     * {@link Ext.form.field.Date}, this would control how a Date object passed to {@link #setValue} would be converted
+     * to a String for display in the field.
+     *
+     * See {@link #rawToValue} for the opposite conversion.
+     *
+     * The base implementation simply does a standard toString conversion, and converts {@link Ext#isEmpty empty values}
+     * to an empty string.
+     *
+     * @param {Object} value The mixed-type value to convert to the raw representation.
+     * @return {Object} The converted raw value.
      */
     valueToRaw: function(value) {
         return '' + Ext.value(value, '');
     },
 
 <span id='Ext-form-field-Base-method-rawToValue'>    /**
-</span>     * &lt;p&gt;Converts a raw input field value into a mixed-type value that is suitable for this particular field type.
-     * This allows controlling the normalization and conversion of user-entered values into field-type-appropriate
-     * values, e.g. a Date object for {@link Ext.form.field.Date}, and is invoked by {@link #getValue}.&lt;/p&gt;
-     * &lt;p&gt;It is up to individual implementations to decide how to handle raw values that cannot be successfully
-     * converted to the desired object type.&lt;/p&gt;
-     * &lt;p&gt;See {@link #valueToRaw} for the opposite conversion.&lt;/p&gt;
-     * &lt;p&gt;The base implementation does no conversion, returning the raw value untouched.&lt;/p&gt;
-     * @param {Mixed} rawValue
-     * @return {Mixed} The converted value.
+</span>     * Converts a raw input field value into a mixed-type value that is suitable for this particular field type. This
+     * allows controlling the normalization and conversion of user-entered values into field-type-appropriate values,
+     * e.g. a Date object for {@link Ext.form.field.Date}, and is invoked by {@link #getValue}.
+     *
+     * It is up to individual implementations to decide how to handle raw values that cannot be successfully converted
+     * to the desired object type.
+     *
+     * See {@link #valueToRaw} for the opposite conversion.
+     *
+     * The base implementation does no conversion, returning the raw value untouched.
+     *
+     * @param {Object} rawValue
+     * @return {Object} The converted value.
      */
     rawToValue: function(rawValue) {
         return rawValue;
     },
 
 <span id='Ext-form-field-Base-method-processRawValue'>    /**
-</span>     * Performs any necessary manipulation of a raw field value to prepare it for {@link #rawToValue conversion}
-     * and/or {@link #validate validation}, for instance stripping out ignored characters. In the base implementation
-     * it does nothing; individual subclasses may override this as needed.
-     * @param {Mixed} value The unprocessed string value
-     * @return {Mixed} The processed string value
+</span>     * Performs any necessary manipulation of a raw field value to prepare it for {@link #rawToValue conversion} and/or
+     * {@link #validate validation}, for instance stripping out ignored characters. In the base implementation it does
+     * nothing; individual subclasses may override this as needed.
+     *
+     * @param {Object} value The unprocessed string value
+     * @return {Object} The processed string value
      */
     processRawValue: function(value) {
         return value;
@@ -538,7 +557,7 @@ var form = new Ext.form.Panel({
 </span>     * Returns the current data value of the field. The type of value returned is particular to the type of the
      * particular field (e.g. a Date object for {@link Ext.form.field.Date}), as the result of calling {@link #rawToValue} on
      * the field's {@link #processRawValue processed} String value. To return the raw String value, see {@link #getRawValue}.
-     * @return {Mixed} value The field value
+     * @return {Object} value The field value
      */
     getValue: function() {
         var me = this,
@@ -550,7 +569,7 @@ var form = new Ext.form.Panel({
 <span id='Ext-form-field-Base-method-setValue'>    /**
 </span>     * Sets a data value into the field and runs the change detection and validation. To set the value directly
      * without these inspections see {@link #setRawValue}.
-     * @param {Mixed} value The value to set
+     * @param {Object} value The value to set
      * @return {Ext.form.field.Field} this
      */
     setValue: function(value) {
@@ -664,6 +683,7 @@ var form = new Ext.form.Panel({
         }
         if (!me.hasFocus) {
             me.hasFocus = true;
+            me.componentLayout.onFocus();
             me.fireEvent('focus', me);
         }
     },
@@ -676,6 +696,11 @@ var form = new Ext.form.Panel({
         var me = this,
             focusCls = me.focusCls,
             inputEl = me.inputEl;
+
+        if (me.destroying) {
+            return;
+        }
+
         me.beforeBlur();
         if (focusCls &amp;&amp; inputEl) {
             inputEl.removeCls(focusCls);
@@ -702,9 +727,10 @@ var form = new Ext.form.Panel({
 
 
 <span id='Ext-form-field-Base-method-isValid'>    /**
-</span>     * Returns whether or not the field value is currently valid by
-     * {@link #getErrors validating} the {@link #processRawValue processed raw value}
-     * of the field. &lt;b&gt;Note&lt;/b&gt;: {@link #disabled} fields are always treated as valid.
+</span>     * Returns whether or not the field value is currently valid by {@link #getErrors validating} the
+     * {@link #processRawValue processed raw value} of the field. **Note**: {@link #disabled} fields are
+     * always treated as valid.
+     *
      * @return {Boolean} True if the value is valid, else false
      */
     isValid : function() {
@@ -714,11 +740,13 @@ var form = new Ext.form.Panel({
 
 
 <span id='Ext-form-field-Base-method-validateValue'>    /**
-</span>     * &lt;p&gt;Uses {@link #getErrors} to build an array of validation errors. If any errors are found, they are passed
-     * to {@link #markInvalid} and false is returned, otherwise true is returned.&lt;/p&gt;
-     * &lt;p&gt;Previously, subclasses were invited to provide an implementation of this to process validations - from 3.2
-     * onwards {@link #getErrors} should be overridden instead.&lt;/p&gt;
-     * @param {Mixed} value The value to validate
+</span>     * Uses {@link #getErrors} to build an array of validation errors. If any errors are found, they are passed to
+     * {@link #markInvalid} and false is returned, otherwise true is returned.
+     *
+     * Previously, subclasses were invited to provide an implementation of this to process validations - from 3.2
+     * onwards {@link #getErrors} should be overridden instead.
+     *
+     * @param {Object} value The value to validate
      * @return {Boolean} True if all validations passed, false if one or more failed
      */
     validateValue: function(value) {
@@ -737,13 +765,14 @@ var form = new Ext.form.Panel({
     },
 
 <span id='Ext-form-field-Base-method-markInvalid'>    /**
-</span>     * &lt;p&gt;Display one or more error messages associated with this field, using {@link #msgTarget} to determine how to
-     * display the messages and applying {@link #invalidCls} to the field's UI element.&lt;/p&gt;
-     * &lt;p&gt;&lt;b&gt;Note&lt;/b&gt;: this method does not cause the Field's {@link #validate} or {@link #isValid} methods to
-     * return &lt;code&gt;false&lt;/code&gt; if the value does &lt;i&gt;pass&lt;/i&gt; validation. So simply marking a Field as invalid
-     * will not prevent submission of forms submitted with the {@link Ext.form.action.Submit#clientValidation}
-     * option set.&lt;/p&gt;
-     * @param {String/Array} errors The validation message(s) to display.
+</span>     * Display one or more error messages associated with this field, using {@link #msgTarget} to determine how to
+     * display the messages and applying {@link #invalidCls} to the field's UI element.
+     *
+     * **Note**: this method does not cause the Field's {@link #validate} or {@link #isValid} methods to return `false`
+     * if the value does _pass_ validation. So simply marking a Field as invalid will not prevent submission of forms
+     * submitted with the {@link Ext.form.action.Submit#clientValidation} option set.
+     *
+     * @param {String/String[]} errors The validation message(s) to display.
      */
     markInvalid : function(errors) {
         // Save the message and fire the 'invalid' event
@@ -756,11 +785,11 @@ var form = new Ext.form.Panel({
     },
 
 <span id='Ext-form-field-Base-method-clearInvalid'>    /**
-</span>     * &lt;p&gt;Clear any invalid styles/messages for this field.&lt;/p&gt;
-     * &lt;p&gt;&lt;b&gt;Note&lt;/b&gt;: this method does not cause the Field's {@link #validate} or {@link #isValid} methods to
-     * return &lt;code&gt;true&lt;/code&gt; if the value does not &lt;i&gt;pass&lt;/i&gt; validation. So simply clearing a field's errors
-     * will not necessarily allow submission of forms submitted with the {@link Ext.form.action.Submit#clientValidation}
-     * option set.&lt;/p&gt;
+</span>     * Clear any invalid styles/messages for this field.
+     *
+     * **Note**: this method does not cause the Field's {@link #validate} or {@link #isValid} methods to return `true`
+     * if the value does not _pass_ validation. So simply clearing a field's errors will not necessarily allow
+     * submission of forms submitted with the {@link Ext.form.action.Submit#clientValidation} option set.
      */
     clearInvalid : function() {
         // Clear the message and fire the 'valid' event