X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..ddde20c4d4ac6a8d53de079761155de813845b3c:/docs/output/Ext.data.Tree.html diff --git a/docs/output/Ext.data.Tree.html b/docs/output/Ext.data.Tree.html index 37ab2996..aea67312 100644 --- a/docs/output/Ext.data.Tree.html +++ b/docs/output/Ext.data.Tree.html @@ -1,4 +1,4 @@ -
Observable Tree
Package: | Ext.data |
Defined In: | Tree.js |
Class: | Tree |
Extends: | Observable |
Observable Tree
Package: | Ext.data |
Defined In: | Tree.js |
Class: | Tree |
Extends: | Observable |
Config Options | Defined By | |
---|---|---|
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 @@ -55,9 +55,11 @@ Ext.DomObserver = Ext.extend(Object, { mode: 'local', triggerAction: 'all' }); | Observable | |
pathSeparator : String The token used to separate paths in node ids (defaults to '/'). | Tree |
Property | Defined By | |
---|---|---|
root : Node The root node for this tree | Tree |
Method | Defined By | |
---|---|---|
Tree( [Node root ] )
- Parameters:
| Tree | |
addEvents( Object object )
+ Parameters:
| Tree | |
addEvents( Object|String o , string Optional. )
:
- voidUsed to define events on this Observable Used to define events on this Observable Parameters:
| Observable | |
addListener( String eventName , Function handler , [Object scope ], [Object options ] )
+ 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 ] )
:
voidAppends an event handler to this object. Appends an event handler to this object. Parameters:
| Observable | |
enableBubble( Object events )
+'click' : this.onClick,
+'mouseover' : this.onMouseOver,
+'mouseout' : this.onMouseOut,
+ scope: this
+});Returns:
| Observable | |
enableBubble( String/Array events )
:
- voidUsed to enable bubbling of events Used to enable bubbling of events Parameters:
| Observable | |
fireEvent( String eventName , Object... args )
+ 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). |