X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/Display.html diff --git a/docs/source/Display.html b/docs/source/Display.html index d9d407f4..0614f124 100644 --- a/docs/source/Display.html +++ b/docs/source/Display.html @@ -1,5 +1,22 @@ -Sencha Documentation Project
/**
- * @class Ext.form.field.Display
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
+ * @class Ext.form.field.Display
  * @extends Ext.form.field.Base
  * <p>A display-only text field which is not validated and not submitted. This is useful for when you want
  * to display a value from a form's {@link Ext.form.Basic#load loaded data} but do not want to allow the
@@ -32,12 +49,6 @@
         renderTo: Ext.getBody()
     });
 </code></pre>
-
- * @constructor
- * Creates a new DisplayField.
- * @param {Object} config Configuration options
- *
- * @xtype displayfield
  */
 Ext.define('Ext.form.field.Display', {
     extend:'Ext.form.field.Base',
@@ -52,12 +63,12 @@ Ext.define('Ext.form.field.Display', {
         }
     ],
 
-    /**
+    /**
      * @cfg {String} fieldCls The default CSS class for the field (defaults to <tt>"x-form-display-field"</tt>)
      */
     fieldCls: Ext.baseCSSPrefix + 'form-display-field',
 
-    /**
+    /**
      * @cfg {Boolean} htmlEncode <tt>false</tt> to skip HTML-encoding the text when rendering it (defaults to
      * <tt>false</tt>). This might be useful if you want to include tags in the field's innerHTML rather than
      * rendering them as string literals per the default logic.
@@ -97,29 +108,31 @@ Ext.define('Ext.form.field.Display', {
         return this.inputEl;
     }
 
-    /**
+    /**
      * @cfg {String} inputType
      * @hide
      */
-    /**
+    /**
      * @cfg {Boolean} disabled
      * @hide
      */
-    /**
+    /**
      * @cfg {Boolean} readOnly
      * @hide
      */
-    /**
+    /**
      * @cfg {Boolean} validateOnChange
      * @hide
      */
-    /**
+    /**
      * @cfg {Number} checkChangeEvents
      * @hide
      */
-    /**
+    /**
      * @cfg {Number} checkChangeBuffer
      * @hide
      */
 });
-
\ No newline at end of file +
+ +