X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/2e847cf21b8ab9d15fa167b315ca5b2fa92638fc..e9397f91ede62d446aed37d23256e8938fc4c335:/docs/output/Ext.util.Observable.html diff --git a/docs/output/Ext.util.Observable.html b/docs/output/Ext.util.Observable.html index b4c5cac8..aa91104a 100644 --- a/docs/output/Ext.util.Observable.html +++ b/docs/output/Ext.util.Observable.html @@ -1,4 +1,4 @@ -
Package: | Ext.util |
Defined In: | Observable-more.js, Observable.js |
Class: | Observable |
Subclasses: | Component, Direct, History, Resizable, SplitBar, Updater, Connection, DataProxy, Node, Store, Tree, DragTracker, Provider, BasicForm, AbstractSelectionModel, ColumnModel, GridView, PropertyStore, ColumnResizer, Sorter, DefaultSelectionModel, MultiSelectionModel, TreeLoader, ClickRepeater, MixedCollection |
Extends: | Object |
Package: | Ext.util |
Defined In: | Observable.js |
Class: | Observable |
Subclasses: | Component, Direct, History, Resizable, SplitBar, Updater, Connection, DataProxy, Node, Store, Tree, DragTracker, Provider, BasicForm, AbstractSelectionModel, ColumnModel, GridView, PropertyStore, ColumnResizer, Sorter, DefaultSelectionModel, MultiSelectionModel, TreeLoader, ClickRepeater, MixedCollection |
Extends: | Object |
var newEmployee = new Employee({
@@ -83,19 +83,19 @@ Ext.DomObserver = Ext.extend(Object, {
triggerAction: 'all'
});
Method | Defined By | |
---|---|---|
Observable.capture( Observable o , Function fn , [Object scope ] )
:
- void<static> Starts capture on the specified Observable. All events will be passed
-to the supplied function with the event name +... <static> Starts capture on the specified Observable. All events will be passed
-to the supplied function with the event name + standard signature of the event
-before the event is fired. If the supplied function returns false,
+ void <static> Starts capture on the specified Observable. All events will be passed
+to the supplied function with the event name + ... <static> Starts capture on the specified Observable. All events will be passed
+to the supplied function with the event name + standard signature of the event
+before the event is fired. If the supplied function returns false,
the event will not fire. Parameters:
| Observable | |
Observable.observeClass( Function c , Object listeners )
:
- void<static> Sets observability on the passed class constructor.
-This makes any event fired on any instance of the passed class a... <static> Sets observability on the passed class constructor. - This makes any event fired on any instance of the passed class also fire a single event through -the class allowing for central handling of events on many instances at once. -Usage:
| Observable | |
Observable.releaseCapture( Observable o )
:
void<static> Removes all added captures from the Observable. <static> Removes all added captures from the Observable. Parameters:
| Observable | |
addEvents( Object|String o , string Optional. )
@@ -155,38 +155,38 @@ Or a shorthand syntax:scope: this });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:
| Observable | |
fireEvent( String eventName , Object... args )
:
BooleanFires the specified event with the passed parameters (minus the event name).
|