X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775..10a866c12701c0a0afd0ac85dcdcf32a421514ac:/docs/output/Ext.form.BasicForm.html?ds=inline diff --git a/docs/output/Ext.form.BasicForm.html b/docs/output/Ext.form.BasicForm.html index b7c05263..9714b77e 100644 --- a/docs/output/Ext.form.BasicForm.html +++ b/docs/output/Ext.form.BasicForm.html @@ -1,4 +1,4 @@ -
Observable BasicForm
Package: | Ext.form |
Defined In: | BasicForm.js |
Class: | BasicForm |
Extends: | Observable |
Encapsulates the DOM <form> element at the heart of the FormPanel class, and provides +
Observable BasicForm
Package: | Ext.form |
Defined In: | BasicForm.js |
Class: | BasicForm |
Extends: | Observable |
Encapsulates the DOM <form> element at the heart of the FormPanel class, and provides input field management, validation, submission, and form loading services.
By default, Ext Forms are submitted through Ajax, using an instance of Ext.form.Action.Submit. To enable normal browser submission of an Ext Form, use the standardSubmit config option.
@@ -188,7 +188,7 @@ to submit extra data, for example: });doAction options
.Property | Defined By | |
---|---|---|
items : MixedCollection A Ext.util.MixedCollection MixedCollection) containing all the Ext.form.Fields in this form. | BasicForm | |
waitMsgTarget : Mixed By default wait messages are displayed with Ext.MessageBox.wait. You can target a specific
+ doAction options . | BasicForm | |
waitTitle : String The default title to show for the waiting message box (defaults to 'Please Wait...') | BasicForm |
Property | Defined By | |
---|---|---|
items : MixedCollection A MixedCollection containing all the Ext.form.Fields in this form. | BasicForm | |
waitMsgTarget : Mixed By default wait messages are displayed with Ext.MessageBox.wait. You can target a specific
element by passing it or i... By default wait messages are displayed with Ext.MessageBox.wait. You can target a specific
element by passing it or its id or mask the form itself by passing in true. | BasicForm |
Method | Defined By | |
---|---|---|
BasicForm( Mixed el , Object config )
Parameters:
| BasicForm | |
add( Field field1 , [Field field2 ], [Field etc ] )
@@ -308,7 +308,7 @@ callback functions (The this reference for the callback functions).clientValidation : BooleanSubmit Action only.
Determines whether a Form's fields are validated in a final call to
isValid prior to submission. Set to false
-to prevent this. If undefined, pre-submission field validation is performed. Returns:
| BasicForm | |
enableBubble( Object events )
+to prevent this. If undefined, pre-submission field validation is performed.Returns:
| BasicForm | |
enableBubble( String/Array events )
:
voidEnables events fired by this Observable to bubble up an owner hierarchy by calling
this.getBubbleTarget() if present... Enables events fired by this Observable to bubble up an owner hierarchy by calling @@ -317,13 +317,13 @@ this.getBubbleTarget() if present... Enables events fi implementation in Ext.Component returns the Component's immediate owner. But if a known target is required, this can be overridden to access the required target more quickly. Example:
Parameters:
| Observable | |
findField( String id )
+});Parameters:
| Observable | |
findField( String id )
:
FieldFind a Ext.form.Field in this form. Find a Ext.form.Field in this form. Parameters:
| BasicForm | |
fireEvent( String eventName , Object... args )
@@ -352,7 +352,11 @@ An event may be set to bubble up an Obse...Fires the An event may be set to bubble up an Observable parent hierarchy (See Ext.Component.getBubbleTarget) by calling enableBubble. Parameters:
| Observable | |
getEl()
:
- Ext.Element Get the HTML form Element Get the HTML form Element Parameters:
| BasicForm | |
getValues( [Boolean asString ] )
+ Ext.ElementGet the HTML form Element Get the HTML form Element Parameters:
| BasicForm | |
getFieldValues( [Boolean dirtyOnly ] )
+ :
+ ObjectRetrieves the fields in the form as a set of key/value pairs, using the getValue() method.
+If multiple fields exist w... Retrieves the fields in the form as a set of key/value pairs, using the getValue() method.
+If multiple fields exist with the same name they are returned as an array. Parameters:
| BasicForm | |
getValues( [Boolean asString ] )
:
String/ObjectReturns the fields in this form as an object with key/value pairs as they would be submitted using a standard form su... Returns the fields in this form as an object with key/value pairs as they would be submitted using a standard form submit. If multiple fields exist with the same name they are returned as an array. |