X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/Label.html diff --git a/docs/source/Label.html b/docs/source/Label.html index 65cf892b..bbd7162b 100644 --- a/docs/source/Label.html +++ b/docs/source/Label.html @@ -1,5 +1,22 @@ -Sencha Documentation Project
/**
- * @class Ext.form.Label
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
+ * @class Ext.form.Label
  * @extends Ext.Component
 
 Produces a standalone `<label />` element which can be inserted into a form and be associated with a field
@@ -45,11 +62,6 @@ be achieved using the standard Field layout's labelAlign.
         }]
     });
 
- * @constructor
- * Creates a new Label component.
- * @param {Ext.core.Element/String/Object} config The configuration options.
- * 
- * @xtype label
  * @markdown
  * @docauthor Jason Johnston <jason@sencha.com>
  */
@@ -58,17 +70,17 @@ Ext.define('Ext.form.Label', {
     alias: 'widget.label',
     requires: ['Ext.util.Format'],
 
-    /**
+    /**
      * @cfg {String} text The plain text to display within the label (defaults to ''). If you need to include HTML
      * tags within the label's innerHTML, use the {@link #html} config instead.
      */
-    /**
+    /**
      * @cfg {String} forId The id of the input element to which this label will be bound via the standard HTML 'for'
      * attribute. If not specified, the attribute will not be added to the label. In most cases you will be
      * associating the label with a {@link Ext.form.field.Base} component, so you should make sure this matches
      * the {@link Ext.form.field.Base#inputId inputId} of that field.
      */
-    /**
+    /**
      * @cfg {String} html An HTML fragment that will be used as the label's innerHTML (defaults to '').
      * Note that if {@link #text} is specified it will take precedence and this value will be ignored.
      */
@@ -84,7 +96,7 @@ Ext.define('Ext.form.Label', {
         };
     },
 
-    /**
+    /**
      * Updates the label's innerHTML with the specified string.
      * @param {String} text The new label text
      * @param {Boolean} encode (optional) False to skip HTML-encoding the text when rendering it
@@ -111,4 +123,6 @@ Ext.define('Ext.form.Label', {
     }
 });
 
-
\ No newline at end of file +
+ +