X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775..2e847cf21b8ab9d15fa167b315ca5b2fa92638fc:/docs/output/Ext.Ajax.html?ds=inline diff --git a/docs/output/Ext.Ajax.html b/docs/output/Ext.Ajax.html index 9b5d9987..a9855684 100644 --- a/docs/output/Ext.Ajax.html +++ b/docs/output/Ext.Ajax.html @@ -1,4 +1,4 @@ -
Observable Connection Ajax
Package: | Ext |
Defined In: | Connection.js |
Class: | Ajax |
Extends: | Connection |
The global Ajax request class that provides a simple way to make Ajax requests +
Observable Connection Ajax
Package: | Ext |
Defined In: | Connection.js |
Class: | Ajax |
Extends: | Connection |
The global Ajax request class that provides a simple way to make Ajax requests with maximum flexibility.
Since Ext.Ajax is a singleton, you can set common properties/events for it once and override them at the request function level only if necessary.
@@ -10,7 +10,7 @@ and override them at the request function level only if necessary.// Default headers to pass in every request
Ext.Ajax.defaultHeaders = {
'Powered-By': 'Ext'
-};
+};
Common Events you may want to set are:
// Example: show a spinner during all Ajax requests
Ext.Ajax.on('beforerequest', this.showSpinner, this);
Ext.Ajax.on('requestcomplete', this.hideSpinner, this);
-Ext.Ajax.on('requestexception', this.hideSpinner, this);
+Ext.Ajax.on('requestexception', this.hideSpinner, this);
An example request:
// Basic request
@@ -38,9 +38,9 @@ Ext.Ajax.request({
form: 'some-form',
params: 'foo=bar'
-});
+});
Config Options | Defined By | |
---|---|---|
disableCachingParam : String Change the parameter which is sent went disabling caching
-through a cache buster. Defaults to '_dc' | Connection | |
listeners : Object A config object containing one or more event handlers to be added to this
+through a cache buster. Defaults to '_dc' | Connection | |
listeners : Object A config object containing one or more event handlers to be added to this
object during initialization. This should ... A config object containing one or more event handlers to be added to this object during initialization. This should be a valid listeners config object as specified in the addListener example for attaching multiple handlers at once. @@ -96,23 +96,23 @@ Ext.DomObserver = Ext.extend(Object, { mode: 'local', triggerAction: 'all' }); | Observable |
Property | Defined By | |
---|---|---|
autoAbort : Boolean Whether a new request should abort any pending requests. (defaults to false) | Ajax | |
defaultHeaders : Object An object containing request headers which are added to each request made by this object
-(defaults to undefined). | Ajax | |
disableCaching : Boolean True to add a unique cache-buster param to GET requests. (defaults to true) | Ajax | |
extraParams : Object An object containing properties which are used as extra parameters to each request made
+(defaults to undefined). | Ajax | |
disableCaching : Boolean True to add a unique cache-buster param to GET requests. (defaults to true) | Ajax | |
extraParams : Object An object containing properties which are used as extra parameters to each request made
by this object (defaults to ... An object containing properties which are used as extra parameters to each request made
by this object (defaults to undefined). Session information and other data that you need
-to pass with each request are commonly put here. | Ajax | |
method : String The default HTTP method to be used for requests. Note that this is case-sensitive and
+to pass with each request are commonly put here. | Ajax | |
method : String The default HTTP method to be used for requests. Note that this is case-sensitive and
should be all caps (defaults t... The default HTTP method to be used for requests. Note that this is case-sensitive and
should be all caps (defaults to undefined; if not set but params are present will use
-"POST", otherwise will use "GET".) | Ajax | |
timeout : Number The timeout in milliseconds to be used for requests. (defaults to 30000) | Ajax | |
url : String The default URL to be used for requests to the server. (defaults to undefined)
+"POST", otherwise will use "GET".) | Ajax | |
timeout : Number The timeout in milliseconds to be used for requests. (defaults to 30000) | Ajax | |
url : String The default URL to be used for requests to the server. (defaults to undefined)
If the server receives all requests t... The default URL to be used for requests to the server. (defaults to undefined)
If the server receives all requests through one URL, setting this once is easier than
-entering it on every request. | Ajax |
Method | Defined By | |
---|---|---|
abort( [Number transactionId ] )
- :
- voidAborts any outstanding request. Aborts any outstanding request. Parameters:
| Connection | |
addEvents( Object|String o , string Optional. )
- :
+entering it on every request. | Ajax |
Method | Defined By | |
---|---|---|
abort( [Number transactionId ] )
+ :
+ voidAborts any outstanding request. Aborts any outstanding request. Parameters:
| Connection | |
addEvents( Object|String o , string Optional. )
+ :
voidAdds the specified events to the list of events which this Observable may fire. Adds the specified events to the list of events which this Observable may fire. Parameters:
| Observable | |
addListener( String eventName , Function handler , [Object scope ], [Object options ] )
- :
+Usage: Returns:
| Observable | |
addListener( String eventName , Function handler , [Object scope ], [Object options ] )
+ :
voidAppends an event handler to this object. Appends an event handler to this object. Parameters:
| Observable | |
enableBubble( Object events )
- :
- voidEnables events fired by this Observable to bubble up an owner hierarchy by calling
+}); Returns:
| Observable | |
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
This is commonly used by Ext.Components to bubble events to owner Containers. See Ext.Component.getBubbleTarget. The default 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 | |
fireEvent( String eventName , Object... args )
- :
- BooleanFires the specified event with the passed parameters (minus the event name).
+}); Parameters:
| Observable | |
fireEvent( String eventName , Object... args )
+ :
+ BooleanFires the specified event with the passed parameters (minus the event name).
An event may be set to bubble up an Obse... Fires the specified event with the passed parameters (minus the event name). An event may be set to bubble up an Observable parent hierarchy (See Ext.Component.getBubbleTarget) -by calling enableBubble. Parameters:
| Observable | |
hasListener( String eventName )
- :
- BooleanChecks to see if this object has any listeners for a specified event Checks to see if this object has any listeners for a specified event Parameters:
| Observable | |
isLoading( [Number transactionId ] )
- :
- BooleanDetermine whether this object has a request outstanding. Determine whether this object has a request outstanding. Parameters:
| Connection | |
on( String eventName , Function handler , [Object scope ], [Object options ] )
- :
+by calling enableBubble.Parameters:
| Observable | |
hasListener( String eventName )
+ :
+ BooleanChecks to see if this object has any listeners for a specified event Checks to see if this object has any listeners for a specified event Parameters:
| Observable | |
isLoading( [Number transactionId ] )
+ :
+ BooleanDetermine whether this object has a request outstanding. Determine whether this object has a request outstanding. Parameters:
| Connection | |
on( String eventName , Function handler , [Object scope ], [Object options ] )
+ :
voidAppends an event handler to this object (shorthand for addListener.) Appends an event handler to this object (shorthand for addListener.) Parameters:
| Observable | |
purgeListeners()
- :
- void Removes all listeners for this object Removes all listeners for this object Parameters:
| Observable | |
relayEvents( Object o , Array events )
- :
- voidRelays selected events from the specified Observable as if the events were fired by this. Relays selected events from the specified Observable as if the events were fired by this. Parameters:
| Observable | |
removeListener( String eventName , Function handler , [Object scope ] )
- :
- voidRemoves an event handler. Removes an event handler. Parameters:
| Observable | |
request( Object options )
- :
- NumberSends an HTTP request to a remote server.
-Important: Ajax server requests are asynchronous, and this call will
+If omitted, defaults to the object which fired the event. options : Object(optional) An object containing handler configuration.
| Observable | |
purgeListeners()
+ :
+ void Removes all listeners for this object Removes all listeners for this object Parameters:
| Observable | |
relayEvents( Object o , Array events )
+ :
+ voidRelays selected events from the specified Observable as if the events were fired by this. Relays selected events from the specified Observable as if the events were fired by this. Parameters:
| Observable | |
removeListener( String eventName , Function handler , [Object scope ] )
+ :
+ voidRemoves an event handler. Removes an event handler. Parameters:
| Observable | |
request( Object options )
+ :
+ NumberSends an HTTP request to a remote server.
+Important: Ajax server requests are asynchronous, and this call will
retu... Sends an HTTP request to a remote server. Important: Ajax server requests are asynchronous, and this call will return before the response has been received. Process any returned data @@ -251,8 +251,8 @@ called regardless of success or failure and is passed the following parameters:
The options object may also contain any other property which might be needed to perform -postprocessing in a callback because it is passed to callback functions.
| Connection | |
resumeEvents()
- :
- void Resume firing events. (see suspendEvents)
-If events were suspended using the queueSuspended parameter, then all
+postprocessing in a callback because it is passed to callback functions. Returns:
| Connection | |
resumeEvents()
+ :
+ void Resume firing events. (see suspendEvents)
+If events were suspended using the queueSuspended parameter, then all
event... Resume firing events. (see suspendEvents)
If events were suspended using the queueSuspended parameter, then all
-events fired during event suspension will be sent to any listeners now. Parameters:
| Observable | |
serializeForm( String/HTMLElement form )
- :
- StringSerialize the passed form into a url encoded string Serialize the passed form into a url encoded string Parameters:
| Ajax | |
suspendEvents( Boolean queueSuspended )
- :
+events fired during event suspension will be sent to any listeners now.Parameters:
| Observable | |
serializeForm( String/HTMLElement form )
+ :
+ StringSerialize the passed form into a url encoded string Serialize the passed form into a url encoded string Parameters:
| Ajax | |
suspendEvents( Boolean queueSuspended )
+ :
voidSuspend the firing of all events. (see resumeEvents) Suspend the firing of all events. (see resumeEvents) Parameters:
| Observable | |
un( String eventName , Function handler , [Object scope ] )
- :
- voidRemoves an event handler (shorthand for removeListener.) Removes an event handler (shorthand for removeListener.) Parameters:
| Observable |
Event | Defined By | |
---|---|---|
beforerequest :
- ( Connection conn , Object options )
- Fires before a network request is made to retrieve a data object. Fires before a network request is made to retrieve a data object. Listeners will be called with the following arguments:
| Connection | |
requestcomplete :
- ( Connection conn , Object response , Object options )
+after the resumeEvents call instead of discarding all suspended events;Returns:
| Observable | |
un( String eventName , Function handler , [Object scope ] )
+ :
+ voidRemoves an event handler (shorthand for removeListener.) Removes an event handler (shorthand for removeListener.) Parameters:
| Observable |
Event | Defined By | |
---|---|---|
beforerequest :
+ ( Connection conn , Object options )
+ Fires before a network request is made to retrieve a data object. Fires before a network request is made to retrieve a data object. Listeners will be called with the following arguments:
| Connection | |
requestcomplete :
+ ( Connection conn , Object response , Object options )
Fires if the request was successfully completed. Fires if the request was successfully completed. Listeners will be called with the following arguments:
| Connection | |
requestexception :
- ( Connection conn , Object response , Object options )
- Fires if an error HTTP status was returned from the server.
+for details. options : ObjectThe options config object passed to the request method. | Connection | |
requestexception :
+ ( Connection conn , Object response , Object options )
+ Fires if an error HTTP status was returned from the server.
See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616... Fires if an error HTTP status was returned from the server.
See HTTP Status Code Definitions
for details of HTTP status codes. Listeners will be called with the following arguments:
|