X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/530ef4b6c5b943cfa68b779d11cf7de29aa878bf..refs/heads/old:/docs/output/Ext.form.CompositeField.html?ds=inline diff --git a/docs/output/Ext.form.CompositeField.html b/docs/output/Ext.form.CompositeField.html index 0e1878e9..4c34bf92 100644 --- a/docs/output/Ext.form.CompositeField.html +++ b/docs/output/Ext.form.CompositeField.html @@ -1,4 +1,8 @@ -
Observable Component BoxComponent Field CompositeField
Package: | Ext.form |
Defined In: | CompositeField.js |
Class: | CompositeField |
Extends: | Field |
Observable + Component + BoxComponent + Field + CompositeField
Package: | Ext.form |
Defined In: | CompositeField.js |
Class: | CompositeField |
Extends: | Field |
{ @@ -106,7 +110,7 @@ which assigns a value by default: To configure the above Class with an extra CSS class append to the default. For example, for BoxLayout (Hbox and Vbox):ctCls: 'x-box-layout-ct custom-class'
tpl
to
-update the content area of the Component.Be aware that conformant with the HTML specification, disabled Fields will not be submitted.
Note: to access the container of an item see ownerCt.
Note: to access the container of an item see ownerCt.
The separator to display after the text of each
fieldLabel. This property may be configured at various levels.
@@ -635,7 +639,12 @@ Or a shorthand syntax:
scope: this
});
String/HTMLElement el
)
:
- voidel
: String/HTMLElementArray errors
)
+ voidel
: String/HTMLElementFunction fn
, [Object scope
], [Array args
] )
+ :
+ Ext.Componentfn
: Functionscope
: Objectargs
: ArrayExt.Component
Array errors
)
:
Stringfn
: FunctionExt.Container
String/Class xtype
)
+true, the container will be returned.fn
: FunctionExt.Container
String/Ext.Component/Class xtype
, [Boolean shallow
] )
:
- Ext.Containerxtype
: String/ClassExt.Container
String eventName
, Object... args
)
+ Ext.Containerxtype
: String/Ext.Component/Classshallow
: BooleanExt.Container
String eventName
, Object... args
)
:
BooleanFires the specified event with the passed parameters (minus the event name).
@@ -810,7 +821,7 @@ of the field. Note: disab...preventMark
: BooleanBoolean
Boolean
String xtype
, [Boolean shallow
] )
+ BooleanBoolean
String/Ext.Component/Class xtype
, [Boolean shallow
] )
:
BooleanTests whether or not this Component is of a specific xtype. This can test whether this Component is descended @@ -822,7 +833,11 @@ to participate in determination of inherited xtypes.
var t = new Ext.form.TextField();
var isText = t.isXType('textfield'); // true
var isBoxSubclass = t.isXType('box'); // true, descended from BoxComponent
-var isBoxInstance = t.isXType('box', true); // false, not a direct BoxComponent instance
xtype
: Stringshallow
: Booleanxtype
: String/Ext.Component/Classvar c = new Ext.Component();
+console.log(c.isXType(c));
+console.log(c.isXType(Ext.Component));
shallow
: BooleanBoolean
String msg
] )
:
void