X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/docs/output/Ext.tree.AsyncTreeNode.html?ds=inline diff --git a/docs/output/Ext.tree.AsyncTreeNode.html b/docs/output/Ext.tree.AsyncTreeNode.html deleted file mode 100644 index 0b1dc3e0..00000000 --- a/docs/output/Ext.tree.AsyncTreeNode.html +++ /dev/null @@ -1,341 +0,0 @@ -
Observable - Node - TreeNode - AsyncTreeNode
Package: | Ext.tree |
Defined In: | AsyncTreeNode.js |
Class: | AsyncTreeNode |
Extends: | TreeNode |
Config Options | Defined By | |
---|---|---|
allowChildren : Boolean False to not allow this node to have child nodes (defaults to true) | TreeNode | |
allowDrag : Boolean False to make this node undraggable if draggable = true (defaults to true) | TreeNode | |
allowDrop : Boolean False if this node cannot have child nodes dropped on it (defaults to true) | TreeNode | |
checked : Boolean True to render a checked checkbox for this node, false to render an unchecked checkbox
-(defaults to undefined with no... True to render a checked checkbox for this node, false to render an unchecked checkbox
-(defaults to undefined with no checkbox rendered) | TreeNode | |
cls : String A css class to be added to the node | TreeNode | |
disabled : Boolean true to start the node disabled | TreeNode | |
draggable : Boolean True to make this node draggable (defaults to false) | TreeNode | |
editable : Boolean False to not allow this node to be edited by an Ext.tree.TreeEditor (defaults to true) | TreeNode | |
expandable : Boolean If set to true, the node will always show a plus/minus icon, even when empty | TreeNode | |
expanded : Boolean true to start the node expanded | TreeNode | |
hidden : Boolean True to render hidden. (Defaults to false). | TreeNode | |
href : String URL of the link used for the node (defaults to #) | TreeNode | |
hrefTarget : String target frame for the link | TreeNode | |
icon : String The path to an icon for the node. The preferred way to do this
-is to use the cls or iconCls attributes and add the ic... The path to an icon for the node. The preferred way to do this
-is to use the cls or iconCls attributes and add the icon via a CSS background image. | TreeNode | |
iconCls : String A css class to be added to the nodes icon element for applying css background images | TreeNode | |
id : String The id for this node. If one is not specified, one is generated. | Node | |
isTarget : Boolean False to not allow this node to act as a drop target (defaults to true) | TreeNode | |
leaf : Boolean true if this node is a leaf and does not have children | Node | |
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. -DOM events from ExtJs Components -While some ExtJs Component classes export selected DOM events (e.g. "click", "mouseover" etc), this
-is usually only done when extra value can be added. For example the DataView's
-
| Observable | |
loader : TreeLoader A TreeLoader to be used by this node (defaults to the loader defined on the tree) | AsyncTreeNode | |
qtip : String An Ext QuickTip for the node | TreeNode | |
qtipCfg : String An Ext QuickTip config for the node (used instead of qtip) | TreeNode | |
singleClickExpand : Boolean True for single click expand on this node | TreeNode | |
text : String The text for this node | TreeNode | |
uiProvider : Function A UI class to use for this node (defaults to Ext.tree.TreeNodeUI) | TreeNode |
Property | Defined By | |
---|---|---|
attributes : Object The attributes supplied for the node. You can use this property to access any custom attributes you supplied. | Node | |
childNodes : Array All child nodes of this node. | Node | |
disabled : Boolean True if this node is disabled. | TreeNode | |
firstChild : Node The first direct child node of this node, or null if this node has no child nodes. | Node | |
hidden : Boolean True if this node is hidden. | TreeNode | |
id : String The node id. | Node | |
lastChild : Node The last direct child node of this node, or null if this node has no child nodes. | Node | |
loader : TreeLoader The loader used by this node (defaults to using the tree's defined loader) | AsyncTreeNode | |
nextSibling : Node The node immediately following this node in the tree, or null if there is no sibling node. | Node | |
parentNode : Node The parent node for this node. | Node | |
previousSibling : Node The node immediately preceding this node in the tree, or null if there is no sibling node. | Node | |
text : String Read-only. The text for this node. To change it use setText . | TreeNode | |
ui : TreeNodeUI Read-only. The UI for this node | TreeNode |
Method | Defined By | |
---|---|---|
AsyncTreeNode( Object/String attributes )
- Parameters:
| AsyncTreeNode | |
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 ] )
- :
- voidAppends an event handler to this object. Appends an event handler to this object. Parameters:
| Observable | |
appendChild( Node/Array node )
- :
- NodeInsert node(s) as the last child node of this node. Insert node(s) as the last child node of this node. Parameters:
| Node | |
bubble( Function fn , [Object scope ], [Array args ] )
- :
- voidBubbles up the tree from this node, calling the specified function with each node. The arguments to the function
-will... Bubbles up the tree from this node, calling the specified function with each node. The arguments to the function
-will be the args provided or the current node. If the function returns false at any point,
-the bubble is stopped. Parameters:
| Node | |
cascade( Function fn , [Object scope ], [Array args ] )
- :
- voidCascades down the tree from this node, calling the specified function with each node. The arguments to the function
-w... Cascades down the tree from this node, calling the specified function with each node. The arguments to the function
-will be the args provided or the current node. If the function returns false at any point,
-the cascade is stopped on that branch. Parameters:
| Node | |
collapse( [Boolean deep ], [Boolean anim ], [Function callback ], [Object scope ] )
- :
- voidCollapse this node. Collapse this node. Parameters:
| TreeNode | |
collapseChildNodes( [Boolean deep ] )
- :
- voidCollapse all child nodes Collapse all child nodes Parameters:
| TreeNode | |
contains( Node node )
- :
- BooleanReturns true if this node is an ancestor (at any point) of the passed node. Returns true if this node is an ancestor (at any point) of the passed node. Parameters:
| Node | |
destroy()
- :
- void Destroys the node. Destroys the node. Parameters:
| Node | |
disable()
- :
- void Disables this node Disables this node Parameters:
| TreeNode | |
eachChild( Function fn , [Object scope ], [Array args ] )
- :
- voidInterates the child nodes of this node, calling the specified function with each node. The arguments to the function
-... Interates the child nodes of this node, calling the specified function with each node. The arguments to the function
-will be the args provided or the current node. If the function returns false at any point,
-the iteration stops. Parameters:
| Node | |
enable()
- :
- void Enables this node Enables this node Parameters:
| TreeNode | |
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 | |
ensureVisible( [Function callback ], [Object scope ] )
- :
- voidEnsures all parent nodes are expanded, and if necessary, scrolls
-the node into view. Ensures all parent nodes are expanded, and if necessary, scrolls
-the node into view. Parameters:
| TreeNode | |
expand( [Boolean deep ], [Boolean anim ], [Function callback ], [Object scope ] )
- :
- voidExpand this node. Expand this node. Parameters:
| TreeNode | |
expandChildNodes( [Boolean deep ] )
- :
- voidExpand all child nodes Expand all child nodes Parameters:
| TreeNode | |
findChild( String attribute , Mixed value , [Boolean deep ] )
- :
- NodeFinds the first child that has the attribute with the specified value. Finds the first child that has the attribute with the specified value. Parameters:
| Node | |
findChildBy( Function fn , [Object scope ], [Boolean deep ] )
- :
- NodeFinds the first child by a custom function. The child matches if the function passed returns true. Finds the first child by a custom function. The child matches if the function passed returns true .Parameters:
| Node | |
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 | |
getDepth()
- :
- Number Returns depth of this node (the root node has a depth of 0) Returns depth of this node (the root node has a depth of 0) Parameters:
| Node | |
getOwnerTree()
- :
- Tree Returns the tree this node is in. Returns the tree this node is in. Parameters:
| Node | |
getPath( [String attr ] )
- :
- StringReturns the path for this node. The path can be used to expand or select this node programmatically. Returns the path for this node. The path can be used to expand or select this node programmatically. Parameters:
| Node | |
getUI()
- :
- TreeNodeUI Returns the UI object for this node. Returns the UI object for this node. Parameters:
| TreeNode | |
hasChildNodes()
- :
- Boolean Returns true if this node has one or more child nodes, else false. Returns true if this node has one or more child nodes, else false. Parameters:
| Node | |
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 | |
indexOf( Node node )
- :
- NumberReturns the index of a child node Returns the index of a child node Parameters:
| Node | |
insertBefore( Node node , Node refNode )
- :
- NodeInserts the first node before the second node in this nodes childNodes collection. Inserts the first node before the second node in this nodes childNodes collection. Parameters:
| Node | |
isAncestor( Node node )
- :
- BooleanReturns true if the passed node is an ancestor (at any point) of this node. Returns true if the passed node is an ancestor (at any point) of this node. Parameters:
| Node | |
isExpandable()
- :
- Boolean Returns true if this node has one or more child nodes, or if the expandable
-node attribute is explicitly specified as... Returns true if this node has one or more child nodes, or if the expandable
-node attribute is explicitly specified as true (see attributes), otherwise returns false. Parameters:
| Node | |
isExpanded()
- :
- Boolean Returns true if this node is expanded Returns true if this node is expanded Parameters:
| TreeNode | |
isFirst()
- :
- Boolean Returns true if this node is the first child of its parent Returns true if this node is the first child of its parent Parameters:
| Node | |
isLast()
- :
- Boolean Returns true if this node is the last child of its parent Returns true if this node is the last child of its parent Parameters:
| Node | |
isLeaf()
- :
- Boolean Returns true if this node is a leaf Returns true if this node is a leaf Parameters:
| Node | |
isLoaded()
- :
- Boolean Returns true if this node has been loaded Returns true if this node has been loaded Parameters:
| AsyncTreeNode | |
isLoading()
- :
- Boolean Returns true if this node is currently loading Returns true if this node is currently loading Parameters:
| AsyncTreeNode | |
isSelected()
- :
- Boolean Returns true if this node is selected Returns true if this node is selected Parameters:
| TreeNode | |
item( Number index )
- :
- NodeReturns the child node at the specified index. Returns the child node at the specified index. Parameters:
| Node | |
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 | |
reload( Function callback , [Object scope ] )
- :
- voidTrigger a reload for this node Trigger a reload for this node Parameters:
| AsyncTreeNode | |
remove( Boolean destroy )
- :
- NodeRemoves this node from its parent Removes this node from its parent Parameters:
| Node | |
removeAll( Boolean destroy )
- :
- NodeRemoves all child nodes from this node. Removes all child nodes from this node. Parameters:
| Node | |
removeChild( Node node , Boolean destroy )
- :
- NodeRemoves a child node from this node. Removes a child node from this node. Parameters:
| Node | |
removeListener( String eventName , Function handler , [Object scope ] )
- :
- voidRemoves an event handler. Removes an event handler. Parameters:
| Observable | |
replaceChild( Node newChild , Node oldChild )
- :
- NodeReplaces one child node in this node with another. Replaces one child node in this node with another. Parameters:
| Node | |
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 | |
select()
- :
- void Triggers selection of this node Triggers selection of this node Parameters:
| TreeNode | |
setCls( String cls )
- :
- voidSets the class on this node. Sets the class on this node. Parameters:
| TreeNode | |
setHref( String href , String (Optional) )
- :
- voidSets the href for the node. Sets the href for the node. Parameters:
| TreeNode | |
setIcon( String icon )
- :
- voidSets the icon for this node. Sets the icon for this node. Parameters:
| TreeNode | |
setIconCls( String cls )
- :
- voidSets the icon class for this node. Sets the icon class for this node. Parameters:
| TreeNode | |
setId( String id )
- :
- voidChanges the id of this node. Changes the id of this node. Parameters:
| Node | |
setText( String text )
- :
- voidSets the text for this node Sets the text for this node Parameters:
| TreeNode | |
setTooltip( String tip , [String title ] )
- :
- voidSets the tooltip for this node. Sets the tooltip for this node. Parameters:
| TreeNode | |
sort( Function fn , [Object scope ] )
- :
- voidSorts this nodes children using the supplied sort function. Sorts this nodes children using the supplied sort function. Parameters:
| Node | |
suspendEvents( Boolean queueSuspended )
- :
- voidSuspend the firing of all events. (see resumeEvents) Suspend the firing of all events. (see resumeEvents) Parameters:
| Observable | |
toggle()
- :
- void Toggles expanded/collapsed state of the node Toggles expanded/collapsed state of the node Parameters:
| TreeNode | |
un( String eventName , Function handler , [Object scope ] )
- :
- voidRemoves an event handler (shorthand for removeListener.) Removes an event handler (shorthand for removeListener.) Parameters:
| Observable | |
unselect( [Boolean silent ] )
- :
- voidTriggers deselection of this node Triggers deselection of this node Parameters:
| TreeNode |
Event | Defined By | |
---|---|---|
append :
- ( Tree tree , Node this , Node node , Number index )
- Fires when a new child node is appended Fires when a new child node is appended Listeners will be called with the following arguments:
| Node | |
beforeappend :
- ( Tree tree , Node this , Node node )
- Fires before a new child is appended, return false to cancel the append. Fires before a new child is appended, return false to cancel the append. Listeners will be called with the following arguments:
| Node | |
beforechildrenrendered :
- ( Node this )
- Fires right before the child nodes for this node are rendered Fires right before the child nodes for this node are rendered Listeners will be called with the following arguments:
| TreeNode | |
beforeclick :
- ( Node this , Ext.EventObject e )
- Fires before click processing. Return false to cancel the default action. Fires before click processing. Return false to cancel the default action. Listeners will be called with the following arguments:
| TreeNode | |
beforecollapse :
- ( Node this , Boolean deep , Boolean anim )
- Fires before this node is collapsed, return false to cancel. Fires before this node is collapsed, return false to cancel. Listeners will be called with the following arguments:
| TreeNode | |
beforedblclick :
- ( Node this , Ext.EventObject e )
- Fires before double click processing. Return false to cancel the default action. Fires before double click processing. Return false to cancel the default action. Listeners will be called with the following arguments:
| TreeNode | |
beforeexpand :
- ( Node this , Boolean deep , Boolean anim )
- Fires before this node is expanded, return false to cancel. Fires before this node is expanded, return false to cancel. Listeners will be called with the following arguments:
| TreeNode | |
beforeinsert :
- ( Tree tree , Node this , Node node , Node refNode )
- Fires before a new child is inserted, return false to cancel the insert. Fires before a new child is inserted, return false to cancel the insert. Listeners will be called with the following arguments:
| Node | |
beforeload :
- ( Node this )
- Fires before this node is loaded, return false to cancel Fires before this node is loaded, return false to cancel Listeners will be called with the following arguments:
| AsyncTreeNode | |
beforemove :
- ( Tree tree , Node this , Node oldParent , Node newParent , Number index )
- Fires before this node is moved to a new location in the tree. Return false to cancel the move. Fires before this node is moved to a new location in the tree. Return false to cancel the move. Listeners will be called with the following arguments:
| Node | |
beforeremove :
- ( Tree tree , Node this , Node node )
- Fires before a child is removed, return false to cancel the remove. Fires before a child is removed, return false to cancel the remove. Listeners will be called with the following arguments:
| Node | |
checkchange :
- ( Node this , Boolean checked )
- Fires when a node with a checkbox's checked property changes Fires when a node with a checkbox's checked property changes Listeners will be called with the following arguments:
| TreeNode | |
click :
- ( Node this , Ext.EventObject e )
- Fires when this node is clicked Fires when this node is clicked Listeners will be called with the following arguments:
| TreeNode | |
collapse :
- ( Node this )
- Fires when this node is collapsed Fires when this node is collapsed Listeners will be called with the following arguments:
| TreeNode | |
contextmenu :
- ( Node this , Ext.EventObject e )
- Fires when this node is right clicked Fires when this node is right clicked Listeners will be called with the following arguments:
| TreeNode | |
dblclick :
- ( Node this , Ext.EventObject e )
- Fires when this node is double clicked Fires when this node is double clicked Listeners will be called with the following arguments:
| TreeNode | |
disabledchange :
- ( Node this , Boolean disabled )
- Fires when the disabled status of this node changes Fires when the disabled status of this node changes Listeners will be called with the following arguments:
| TreeNode | |
expand :
- ( Node this )
- Fires when this node is expanded Fires when this node is expanded Listeners will be called with the following arguments:
| TreeNode | |
insert :
- ( Tree tree , Node this , Node node , Node refNode )
- Fires when a new child node is inserted. Fires when a new child node is inserted. Listeners will be called with the following arguments:
| Node | |
load :
- ( Node this )
- Fires when this node is loaded Fires when this node is loaded Listeners will be called with the following arguments:
| AsyncTreeNode | |
move :
- ( Tree tree , Node this , Node oldParent , Node newParent , Number index )
- Fires when this node is moved to a new location in the tree Fires when this node is moved to a new location in the tree Listeners will be called with the following arguments:
| Node | |
remove :
- ( Tree tree , Node this , Node node )
- Fires when a child node is removed Fires when a child node is removed Listeners will be called with the following arguments:
| Node | |
textchange :
- ( Node this , String text , String oldText )
- Fires when the text for this node is changed Fires when the text for this node is changed Listeners will be called with the following arguments:
| TreeNode |