X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/d41dc04ad17d1d9125fb2cf72db2b4782dbe3a8c..ddde20c4d4ac6a8d53de079761155de813845b3c:/docs/output/Ext.History.html diff --git a/docs/output/Ext.History.html b/docs/output/Ext.History.html index 89f95bc3..49c2597b 100644 --- a/docs/output/Ext.History.html +++ b/docs/output/Ext.History.html @@ -1,462 +1,199 @@ -
Observable - History
Package: | Ext |
Defined In: | History.js |
Class: | History |
Extends: | Observable |
Observable History
Package: | Ext |
Defined In: | History.js |
Class: | History |
Extends: | Observable |
Config Options | -Defined By | -|
---|---|---|
- |
-
- listeners : Object
-
- (optional) A config object containing one or more event handlers to be added to this object during initialization. Th...
-
- (optional) 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.
- |
- Observable | -
Method | -Defined By | -|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
- |
-
- add( String token , Boolean preventDuplicates ) : void
-
\ No newline at end of file
+Add a new token to the history stack. This can be any arbitrary value, although it would
-commonly be the concatenatio...
-
- Add a new token to the history stack. This can be any arbitrary value, although it would
+the browser history stack. This class is a singleton and cannot be created directly. Config Options
Public Properties
Public Methods
Public Events-This class has no public events.
- Returns:
| Observable | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
back()
+ :
+ void Programmatically steps back one step in browser history (equivalent to the user pressing the Back button). Programmatically steps back one step in browser history (equivalent to the user pressing the Back button). Parameters:
| History | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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).
+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 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
forward()
+ :
+ void Programmatically steps forward one step in browser history (equivalent to the user pressing the Forward button). Programmatically steps forward one step in browser history (equivalent to the user pressing the Forward button). Parameters:
| History | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
getToken()
+ :
+ String Retrieves the currently-active history token. Retrieves the currently-active history token. Parameters:
| History | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
init( [Boolean onReady ], [Object scope ] )
+ :
+ voidInitialize the global History instance. Initialize the global History instance. Parameters:
| History | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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 | |
---|---|---|
change :
+ ( String token )
+ Fires when navigation back or forwards within the local page's history occurs. Fires when navigation back or forwards within the local page's history occurs. Listeners will be called with the following arguments:
| History | |
ready :
+ ( Ext.History The )
+ Fires when the Ext.History singleton has been initialized and is ready for use. Fires when the Ext.History singleton has been initialized and is ready for use. Listeners will be called with the following arguments:
| History |