Sencha Documentation

Ext.tree.TreePanelxtype: treepanel

The TreePanel provides tree-structured UI representation of tree-structured data.

TreeNodes added to the TreePanel may each contain metadata used by your application in their attributes property.

A TreePanel must have a root node before it is rendered. This may either be specified using the root config option, or using the setRootNode method.

An example of tree rendered to an existing div:

var tree = new Ext.tree.TreePanel({
    renderTo: 'tree-div',
    useArrows: true,
    autoScroll: true,
    animate: true,
    enableDD: true,
    containerScroll: true,
    border: false,
    // auto create TreeLoader
    dataUrl: 'get-nodes.php',

root: {
    nodeType: 'async',
    text: 'Ext JS',
    draggable: false,
    id: 'source'
}

});

tree.getRootNode().expand();

The example above would work with a data packet similar to this:

[{
    "text": "adapter",
    "id": "source\/adapter",
    "cls": "folder"
}, {
    "text": "dd",
    "id": "source\/dd",
    "cls": "folder"
}, {
    "text": "debug.js",
    "id": "source\/debug.js",
    "leaf": true,
    "cls": "file"
}]

An example of tree within a Viewport:

new Ext.container.Viewport({
    layout: 'border',
    items: [{
        region: 'west',
        collapsible: true,
        title: 'Navigation',
        xtype: 'treepanel',
        width: 200,
        autoScroll: true,
        split: true,
        loader: new Ext.tree.TreeLoader(),
        root: new Ext.tree.AsyncTreeNode({
            expanded: true,
            children: [{
                text: 'Menu Option 1',
                leaf: true
            }, {
                text: 'Menu Option 2',
                leaf: true
            }, {
                text: 'Menu Option 3',
                leaf: true
            }]
        }),
        rootVisible: false,
        listeners: {
            click: function(n) {
                Ext.Msg.alert('Navigation Tree Click', 'You clicked: "' + n.attributes.text + '"');
            }
        }
    }, {
        region: 'center',
        xtype: 'tabpanel',
        // remaining code not shown ...
    }]
});

Defined By

Config Options

 
true to animate the transition when the panel is collapsed, false to skip the animation (defaults to true if the Ext....
true to animate the transition when the panel is collapsed, false to skip the animation (defaults to true if the Ext.fx.Anim class is available, otherwise false). May also be specified as the animation duration in milliseconds.
 
true to enable animated expand/collapse (defaults to the value of Ext.enableFx)
true to enable animated expand/collapse (defaults to the value of Ext.enableFx)
 
true to enable animated expand/collapse (defaults to the value of Ext.enableFx)
true to enable animated expand/collapse (defaults to the value of Ext.enableFx)
 
This config is intended mainly for floating Components which may or may not be shown. Instead of using renderTo in th...

This config is intended mainly for floating Components which may or may not be shown. Instead of using renderTo in the configuration, and rendering upon construction, this allows a Component to render itself upon first show.

Specify as true to have this Component render to the document body upon first show.

Specify as an element, or the ID of an element to have this Component render to a specific element upon first show.

This defaults to true for the Window class.

 
true to use overflow:'auto' on the components layout element and show scroll bars automatically when necessary, false...
true to use overflow:'auto' on the components layout element and show scroll bars automatically when necessary, false to clip any overflowing content (defaults to false).
 
The base CSS class to apply to this panel's element (defaults to 'x-panel').
The base CSS class to apply to this panel's element (defaults to 'x-panel').
 
Convenience method. Short for 'Bottom Bar'. bbar: [ { xtype: 'button', text: 'Button 1' } ] is eq...

Convenience method. Short for 'Bottom Bar'.

bbar: [
  { xtype: 'button', text: 'Button 1' }
]

is equivalent to

dockedItems: [{
    xtype: 'toolbar',
    dock: 'bottom',
    items: [
        { xtype: 'button', text: 'Button 1' }
    ]
}]
 
A shortcut for setting a border style on the body element. The value can either be a number to be applied to all side...
A shortcut for setting a border style on the body element. The value can either be a number to be applied to all sides, or a normal css string describing borders. Defaults to undefined.
 
A shortcut for setting a margin style on the body element. The value can either be a number to be applied to all side...
A shortcut for setting a margin style on the body element. The value can either be a number to be applied to all sides, or a normal css string describing margins. Defaults to undefined.
 
A shortcut for setting a padding style on the body element. The value can either be a number to be applied to all sid...
A shortcut for setting a padding style on the body element. The value can either be a number to be applied to all sides, or a normal css string describing padding. Defaults to undefined.
 
Specifies the border for this component. The border can be a single numeric value to apply to all sides or it can be ...
Specifies the border for this component. The border can be a single numeric value to apply to all sides or it can be a CSS style specification for each style, for example: '10 5 3 10'.
 
An array of events that, when fired, should be bubbled to any parent container. See Ext.util.Observable-enableBubble....

An array of events that, when fired, should be bubbled to any parent container. See Ext.util.Observable-enableBubble. Defaults to [].

 
Convenience method used for adding buttons docked to the bottom right of the panel. buttons: [ { text: 'Bu...

Convenience method used for adding buttons docked to the bottom right of the panel.

buttons: [
  { text: 'Button 1' }
]

is equivalent to

dockedItems: [{
    xtype: 'toolbar',
    dock: 'bottom',
    items: [
        { xtype: 'component', flex: 1 },
        { xtype: 'button', text: 'Button 1' }
    ]
}]
 
True to display the 'close' tool button and allow the user to close the window, false to hide the button and disallow...

True to display the 'close' tool button and allow the user to close the window, false to hide the button and disallow closing the window (defaults to false).

By default, when close is requested by clicking the close button in the header, the close method will be called. This will destroy the Panel and its content meaning that it may not be reused.

To make closing a Panel hide the Panel so that it may be reused, set closeAction to 'hide'.

 
The action to take when the close header tool is clicked: <div class="mdetail-params"> 'close' : Default<div class="s...

The action to take when the close header tool is clicked:

  • 'close' : Default
    remove the window from the DOM and destroy it and all descendant Components. The window will not be available to be redisplayed via the show method.
  • 'hide' :
    hide the window by setting visibility to hidden and applying negative offsets. The window will be available to be redisplayed via the show method.

Note: This behavior has changed! setting *does* affect the close method which will invoke the approriate closeAction.

 
An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for ...
An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for adding customized styles to the component or any of its children using standard CSS rules.
 
The direction to collapse the Panel when the toggle button is clicked. Defaults to the headerPosition Important: This...

The direction to collapse the Panel when the toggle button is clicked.

Defaults to the headerPosition

Important: This config is ignored for collapsible Panels which are direct child items of a border layout.

Specify as 'top', 'bottom', 'left' or 'right'.

 
true to make sure the collapse/expand toggle button always renders first (to the left of) any other tools in the pane...
true to make sure the collapse/expand toggle button always renders first (to the left of) any other tools in the panel's title bar, false to render it last (defaults to true).
 
Important: this config is only effective for collapsible Panels which are direct child items of a border layout. When...

Important: this config is only effective for collapsible Panels which are direct child items of a border layout.

When not a direct child item of a border layout, then the Panel's header remains visible, and the body is collapsed to zero dimensions. If the Panel has no header, then a new header (orientated correctly depending on the collapseDirection) will be inserted to show a the title and a re-expand tool.

When a child item of a border layout, this config has two options:

  • alt : Default.
    When collapsed, a placeholder Container is injected into the layout to represent the Panel and to provide a UI with a Tool to allow the user to re-expand the Panel.
  • header :
    The Panel collapses to leave a header visible as when not inside a border layout.

 
true to render the panel collapsed, false to render it expanded (defaults to false).
true to render the panel collapsed, false to render it expanded (defaults to false).
 
A CSS class to add to the panel's element after it has been collapsed (defaults to 'x-panel-collapsed').
A CSS class to add to the panel's element after it has been collapsed (defaults to 'x-panel-collapsed').
 
True to make the panel collapsible and have an expand/collapse toggle Tool added into the header tool button area. Fa...

True to make the panel collapsible and have an expand/collapse toggle Tool added into the header tool button area. False to keep the panel sized either statically, or by an owning layout manager, with no toggle Tool (defaults to false).

See collapseMode and collapseDirection
 
CSS Class to be added to a components root level element to give distinction to it via styling.
CSS Class to be added to a components root level element to give distinction to it via styling.
 
The sizing and positioning of a Component's internal Elements is the responsibility of the Component's layout manager...

The sizing and positioning of a Component's internal Elements is the responsibility of the Component's layout manager which sizes a Component's internal structure in response to the Component being sized.

Generally, developers will not use this configuration as all provided Components which need their internal elements sizing (Such as input fields) come with their own componentLayout managers.

The default layout manager will be used on instances of the base Ext.Component class which simply sizes the Component's encapsulating element to the height and width specified in the setSize method.

 
true to register this container with ScrollManager
true to register this container with ScrollManager
 
true if the tree should only allow append drops (use for trees which are sorted)
true if the tree should only allow append drops (use for trees which are sorted)
 
The DD group this TreePanel belongs to
The DD group this TreePanel belongs to
 
true to enable body scrolling
true to enable body scrolling
 
Defaults to false.
Defaults to false.
 
CSS class to add when the Component is disabled. Defaults to 'x-item-disabled'.
CSS class to add when the Component is disabled. Defaults to 'x-item-disabled'.
 
The field inside the model that will be used as the node's text. (defaults to text)
The field inside the model that will be used as the node's text. (defaults to text)
 
A component or series of components to be added as docked items to this panel. The docked items can be docked to eith...
A component or series of components to be added as docked items to this panel. The docked items can be docked to either the top, right, left or bottom of a panel. This is typically used for things like toolbars or tab bars:
var panel = new Ext.panel.Panel({
    dockedItems: [{
        xtype: 'toolbar',
        dock: 'top',
        items: [{
            text: 'Docked to the top'
        }]
    }]
});
 
Custom config to pass to the Ext.tree.TreeDragZone instance
Custom config to pass to the Ext.tree.TreeDragZone instance
 
Specify as true to make a floating Component draggable using the Component's encapsulating element as the drag handle...

Specify as true to make a floating Component draggable using the Component's encapsulating element as the drag handle.

This may also be specified as a config object for the ComponentDragger which is instantiated to perform dragging.

For example to create a Component which may only be dragged around using a certain internal element as the drag handle, use the delegate option:

new Ext.Component({
    constrain: true,
    floating:true,
    style: {
        backgroundColor: '#fff',
        border: '1px solid black'
    },
    html: '

"cursor:move">The title

The content

', draggable: { delegate: 'h1' } }).show();
 
Custom config to pass to the Ext.tree.TreeDropZone instance
Custom config to pass to the Ext.tree.TreeDropZone instance
 
true to enable drag and drop
true to enable drag and drop
 
true to enable just drag
true to enable just drag
 
true to enable just drop
true to enable just drop
 
Convenience method used for adding items to the bottom right of the panel. Short for Footer Bar. fbar: [ {...

Convenience method used for adding items to the bottom right of the panel. Short for Footer Bar.

fbar: [
  { type: 'button', text: 'Button 1' }
]

is equivalent to

dockedItems: [{
    xtype: 'toolbar',
    dock: 'bottom',
    items: [
        { xtype: 'component', flex: 1 },
        { xtype: 'button', text: 'Button 1' }
    ]
}]
 
Important: This config is only effective for collapsible Panels which are direct child items of a border layout. true...

Important: This config is only effective for collapsible Panels which are direct child items of a border layout.

true to allow clicking a collapsed Panel's placeHolder to display the Panel floated above the layout, false to force the user to fully expand a collapsed region by clicking the expand button to see it again (defaults to true).
 
Specify as true to float the Component outside of the document flow using CSS absolute positioning. Components such a...

Specify as true to float the Component outside of the document flow using CSS absolute positioning.

Components such as Windows and Menus are floating by default.

Floating Components that are programatically rendered will register themselves with the global ZIndexManager

Floating Components as child items of a Container

A floating Component may be used as a child item of a Container. This just allows the floating Component to seek a ZIndexManager by examining the ownerCt chain.

When configured as floating, Components acquire, at render time, a ZIndexManager which manages a stack of related floating Components. The ZIndexManager brings a single floating Component to the top of its stack when the Component's toFront method is called.

The ZIndexManager is found by traversing up the ownerCt chain to find an ancestor which itself is floating. This is so that descendant floating Components of floating Containers (Such as a ComboBox dropdown within a Window) can have its zIndex managed relative to any siblings, but always above that floating ancestor Container.

If no floating ancestor is found, a floating Component registers itself with the default ZIndexManager.

Floating components do not participate in the Container's layout. Because of this, they are not rendered until you explicitly show them.

After rendering, the ownerCt reference is deleted, and the floatParent property is set to the found floating ancestor Container. If no floating ancestor Container was found the floatParent property will not be set.

 
Specifies whether the floated component should be automatically focused when it is brought to the front. Defaults to ...
Specifies whether the floated component should be automatically focused when it is brought to the front. Defaults to true.
 
True to apply a frame to the panel.
True to apply a frame to the panel.
 
True to apply a frame to the panel panels header (if 'frame' is true).
True to apply a frame to the panel panels header (if 'frame' is true).
 
Specify as 'top', 'bottom', 'left' or 'right'. Defaults to 'top'.
Specify as 'top', 'bottom', 'left' or 'right'. Defaults to 'top'.
 
The height of this component in pixels.
The height of this component in pixels.
 
Defaults to false.
Defaults to false.
 
true to hide the expand/collapse toggle button when collapsible == true, false to display it (defaults to false).
true to hide the expand/collapse toggle button when collapsible == true, false to display it (defaults to false).
 
A String which specifies how this Component's encapsulating DOM element will be hidden. Values may be<div class="mdet...
A String which specifies how this Component's encapsulating DOM element will be hidden. Values may be
  • 'display' : The Component will be hidden using the display: none style.
  • 'visibility' : The Component will be hidden using the visibility: hidden style.
  • 'offsets' : The Component will be hidden by absolutely positioning it out of the visible area of the document. This is useful when a hidden Component must maintain measurable dimensions. Hiding using display results in a Component having zero dimensions.
Defaults to 'display'.
 
The color of the node highlight (defaults to 'C3DAF9')
The color of the node highlight (defaults to 'C3DAF9')
 
false to disable node highlight on drop (defaults to the value of Ext.enableFx)
false to disable node highlight on drop (defaults to the value of Ext.enableFx)
 
The unique id of this component instance (defaults to an auto-assigned id). It should not be necessary to use this co...

The unique id of this component instance (defaults to an auto-assigned id).

It should not be necessary to use this configuration except for singleton objects in your application. Components created with an id may be accessed globally using Ext.getCmp.

Instead of using assigned ids, use the itemId config, and ComponentQuery which provides selector-based searching for Sencha Components analogous to DOM querying. The Container class contains shortcut methods to query its descendant Components by selector.

Note that this id will also be used as the element id for the containing HTML element that is rendered to the page for this component. This allows you to write id-based CSS rules to style the specific instance of this component uniquely, and also to select sub-elements using this component's id as the parent.

Note: to avoid complications imposed by a unique id also see itemId.

Note: to access the container of a Component see ownerCt.

 
An itemId can be used as an alternative way to get a reference to a component when no object reference is available. ...

An itemId can be used as an alternative way to get a reference to a component when no object reference is available. Instead of using an id with Ext.getCmp, use itemId with Ext.container.Container.getComponent which will retrieve itemId's or id's. Since itemId's are an index to the container's internal MixedCollection, the itemId is scoped locally to the container -- avoiding potential conflicts with Ext.ComponentMgr which requires a unique id.

var c = new Ext.panel.Panel({ //
    height: 300,
    renderTo: document.body,
    layout: 'auto',
    items: [
        {
            itemId: 'p1',
            title: 'Panel 1',
            height: 150
        },
        {
            itemId: 'p2',
            title: 'Panel 2',
            height: 150
        }
    ]
})
p1 = c.getComponent('p1'); // not the same as Ext.getCmp()
p2 = p1.ownerCt.getComponent('p2'); // reference via a sibling

Also see id, query, down and child.

Note: to access the container of an item see ownerCt.

 
false to disable tree lines (defaults to true)
false to disable tree lines (defaults to true)
 
false to disable tree lines (defaults to true)
false to disable tree lines (defaults to true)
 
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 click event passing the node clicked on. To access DOM events directly from a child element of a Component, we need to specify the element option to identify the Component property to add a DOM listener to:

new Ext.panel.Panel({
    width: 400,
    height: 200,
    dockedItems: [{
        xtype: 'toolbar'
    }],
    listeners: {
        click: {
            element: 'el', //bind to the underlying el property on the panel
            fn: function(){ console.log('click el'); }
        },
        dblclick: {
            element: 'body', //bind to the underlying body property on the panel
            fn: function(){ console.log('dblclick body'); }
        }
    }
});

 
A Ext.tree.TreeLoader for use with this TreePanel
A Ext.tree.TreeLoader for use with this TreePanel
 
Only valid when a sibling element of a Splitter within a VBox or HBox layout. Specifies that if an immediate sibling ...

Only valid when a sibling element of a Splitter within a VBox or HBox layout.

Specifies that if an immediate sibling Splitter is moved, the Component on the other side is resized, and this Component maintains its configured flex value.

 
Specifies the margin for this component. The margin can be a single numeric value to apply to all sides or it can be ...
Specifies the margin for this component. The margin can be a single numeric value to apply to all sides or it can be a CSS style specification for each style, for example: '10 5 3 10'.
 
The maximum value in pixels which this Component will set its height to. Warning: This will override any size managem...

The maximum value in pixels which this Component will set its height to.

Warning: This will override any size management applied by layout managers.

 
The maximum value in pixels which this Component will set its width to. Warning: This will override any size manageme...

The maximum value in pixels which this Component will set its width to.

Warning: This will override any size management applied by layout managers.

 
Minimum width of all footer toolbar buttons in pixels (defaults to undefined). If set, this will be used as the defau...
Minimum width of all footer toolbar buttons in pixels (defaults to undefined). If set, this will be used as the default value for the Ext.button.Button-minWidth config of each Button added to the footer toolbar. Will be ignored for buttons that have this value configured some other way, e.g. in their own config object or via the defaults of their parent container.
 
The minimum value in pixels which this Component will set its height to. Warning: This will override any size managem...

The minimum value in pixels which this Component will set its height to.

Warning: This will override any size management applied by layout managers.

 
The minimum value in pixels which this Component will set its width to. Warning: This will override any size manageme...

The minimum value in pixels which this Component will set its width to.

Warning: This will override any size management applied by layout managers.

 
An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, and...
An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, and removed when the mouse moves out. (defaults to ''). This can be useful for adding customized 'active' or 'hover' styles to the component or any of its children using standard CSS rules.
 
Specifies the padding for this component. The padding can be a single numeric value to apply to all sides or it can b...
Specifies the padding for this component. The padding can be a single numeric value to apply to all sides or it can be a CSS style specification for each style, for example: '10 5 3 10'.
 
The token used to separate sub-paths in path strings (defaults to '/')
The token used to separate sub-paths in path strings (defaults to '/')
 
Important: This config is only effective for collapsible Panels which are direct child items of a border layout when ...

Important: This config is only effective for collapsible Panels which are direct child items of a border layout when using the default 'alt' collapseMode.

b>Optional. A Component (or config object for a Component) to show in place of this Panel when this Panel is collapsed by a border layout. Defaults to a generated Header containing a Tool to re-expand the Panel.

 
An object or array of objects that will provide custom functionality for this component. The only requirement for a ...
An object or array of objects that will provide custom functionality for this component. The only requirement for a valid plugin is that it contain an init method that accepts a reference of type Ext.Component. When a component is created, if any plugins are available, the component will call the init method on each plugin, passing a reference to itself. Each plugin can then call methods or respond to events on the component as needed to provide its functionality.
 
Prevent a Header from being created and shown. Defaults to false.
Prevent a Header from being created and shown. Defaults to false.
 
An object containing properties specifying DomQuery selectors which identify child elements created by the render pro...

An object containing properties specifying DomQuery selectors which identify child elements created by the render process.

After the Component's internal structure is rendered according to the renderTpl, this object is iterated through, and the found Elements are added as properties to the Component using the renderSelector property name.

For example, a Component which rendered an image, and description into its element might use the following properties coded into its prototype:

renderTpl: '<img src="{imageUrl}" class="x-image-component-img"><div class="x-image-component-desc">{description}>/div<',

renderSelectors: {
    image: 'img.x-image-component-img',
    descEl: 'div.x-image-component-desc'
}

After rendering, the Component would have a property image referencing its child img Element, and a property descEl referencing the div Element which contains the description.

 
Specify the id of the element, a DOM element or an existing Element that this component will be rendered into. Notes ...

Specify the id of the element, a DOM element or an existing Element that this component will be rendered into.

  • Notes :
      Do not use this option if the Component is to be a child item of a Container. It is the responsibility of the Container's layout manager to render and manage its child items.
      When using this config, a call to render() is not required.

See render also.

 
An XTemplate used to create the internal structure inside this Component's encapsulating Element. You do not normally...

An XTemplate used to create the internal structure inside this Component's encapsulating Element.

You do not normally need to specify this. For the base classes Ext.Component and Ext.container.Container, this defaults to null which means that they will be initially rendered with no internal structure; they render their Element empty. The more specialized ExtJS and Touch classes which use a more complex DOM structure, provide their own template definitions.

This is intended to allow the developer to create application-specific utility Components with customized internal structure.

Upon rendering, any created child elements may be automatically imported into object properties using the renderSelectors option.

 
The HTTP request method for loading data (defaults to the value of Ext.Ajax-method).
The HTTP request method for loading data (defaults to the value of Ext.Ajax-method).
 
Specify as true to apply a Resizer to this Component after rendering. May also be specified as a config object to be ...

Specify as true to apply a Resizer to this Component after rendering.

May also be specified as a config object to be passed to the constructor of Resizer to override any defaults. By default the Component passes its minimum and maximum size, and uses Ext.resizer.Resizer-dynamic: false

 
A valid Ext.resizer.Resizer handles config string (defaults to 'all'). Only applies when resizable = true.
A valid Ext.resizer.Resizer handles config string (defaults to 'all'). Only applies when resizable = true.
 
The root node for the tree.
The root node for the tree.
 
Allows you to not specify a store on this TreePanel. This is useful for creating a simple tree with preloaded data wi...
Allows you to not specify a store on this TreePanel. This is useful for creating a simple tree with preloaded data without having to specify a TreeStore and Model. A store and model will be created and root will be passed to that store.
 
false to hide the root node (defaults to true)
false to hide the root node (defaults to true)
 
false to hide the root node (defaults to true)
false to hide the root node (defaults to true)
 
A tree selection model to use with this TreePanel (defaults to an Ext.tree.DefaultSelectionModel)
A tree selection model to use with this TreePanel (defaults to an Ext.tree.DefaultSelectionModel)
 
Specifies whether the floating component should be given a shadow. Set to true to automatically create an Ext.Shadow,...
Specifies whether the floating component should be given a shadow. Set to true to automatically create an Ext.Shadow, or a string indicating the shadow's display Ext.Shadow-mode. Set to false to disable the shadow. (Defaults to 'sides'.)
 
true if only 1 node per branch may be expanded
true if only 1 node per branch may be expanded
 
A custom style specification to be applied to this component's Element. Should be a valid argument to Ext.core.Eleme...
A custom style specification to be applied to this component's Element. Should be a valid argument to Ext.core.Element-applyStyles.
new Ext.panel.Panel({
            title: 'Some Title',
            renderTo: Ext.getBody(),
            width: 400, height: 300,
            layout: 'form',
            items: [{
                xtype: 'textarea',
                style: {
                    width: '95%',
                    marginBottom: '10px'
                }
            },
            new Ext.button.Button({
                text: 'Send',
                minWidth: '100',
                style: {
                    marginBottom: '10px'
                }
            })
            ]
        });
 
The class that is added to the content target when you set styleHtmlContent to true. Defaults to 'x-html'
The class that is added to the content target when you set styleHtmlContent to true. Defaults to 'x-html'
 
True to automatically style the html inside the content target of this component (body for panels). Defaults to false...
True to automatically style the html inside the content target of this component (body for panels). Defaults to false.
 
If true, suspend calls to doLayout. Usefule when batching multiple adds to a container and not passing them as multi...
If true, suspend calls to doLayout. Usefule when batching multiple adds to a container and not passing them as multiple arguments or an array.
 
Convenience method. Short for 'Top Bar'. tbar: [ { xtype: 'button', text: 'Button 1' } ] is equiv...

Convenience method. Short for 'Top Bar'.

tbar: [
  { xtype: 'button', text: 'Button 1' }
]

is equivalent to

dockedItems: [{
    xtype: 'toolbar',
    dock: 'top',
    items: [
        { xtype: 'button', text: 'Button 1' }
    ]
}]
 
true to allow expanding and collapsing the panel (when collapsible = true) by clicking anywhere in the header bar, fa...
true to allow expanding and collapsing the panel (when collapsible = true) by clicking anywhere in the header bar, false) to allow it only by clicking to tool button (defaults to false)).
 
false to disable mouse over highlighting
false to disable mouse over highlighting
 
A set of predefined ui styles for individual components. Most components support 'light' and 'dark'. Extra string add...
A set of predefined ui styles for individual components. Most components support 'light' and 'dark'. Extra string added to the baseCls with an extra '-'.
new Ext.panel.Panel({
          title: 'Some Title',
          baseCls: 'x-component'
          ui: 'green'
      });

The ui configuration in this example would add 'x-component-green' as an additional class.

 
true to use Vista-style arrows in the tree (defaults to false)
true to use Vista-style arrows in the tree (defaults to false)
 
true to use Vista-style arrows in the tree (defaults to false)
true to use Vista-style arrows in the tree (defaults to false)
 
The width of this component in pixels.
The width of this component in pixels.
Defined By

Properties

 
dd : Ext.dd.DragSource.
If this Panel is configured draggable, this property will contain an instance of Ext.dd.DragSource which handles drag...

If this Panel is configured draggable, this property will contain an instance of Ext.dd.DragSource which handles dragging the Panel.

The developer must provide implementations of the abstract methods of Ext.dd.DragSource in order to supply behaviour for each stage of the drag/drop process. See draggable.
 
The dragZone used by this tree if drag is enabled (see enableDD or enableDrag)
The dragZone used by this tree if drag is enabled (see enableDD or enableDrag)
 
Read-only property indicating whether or not the component can be dragged
Read-only property indicating whether or not the component can be dragged
 
The dropZone used by this tree if drop is enabled (see enableDD or enableDrop)
The dropZone used by this tree if drop is enabled (see enableDD or enableDrop)
 
Read-only property indicating the width of any framing elements which were added within the encapsulating element to ...

Read-only property indicating the width of any framing elements which were added within the encapsulating element to provide graphical, rounded borders. See the frame config.

This is an object containing the frame width in pixels for all four sides of the Component containing the following properties:

  • top The width of the top framing element in pixels.
  • right The width of the right framing element in pixels.
  • bottom The width of the bottom framing element in pixels.
  • left The width of the left framing element in pixels.
 
This Component's owner Container (defaults to undefined, and is set automatically when this Component is added to a C...
This Component's owner Container (defaults to undefined, and is set automatically when this Component is added to a Container). Read-only.

Note: to access items within the Container see itemId.

 
Read-only property indicating whether or not the component has been rendered.
Read-only property indicating whether or not the component has been rendered.
 
The root node of this tree.
The root node of this tree.
 
floatParent Optional. Only present for floating Components which were inserted as descendant items of floating Contai...
floatParent

Optional. Only present for floating Components which were inserted as descendant items of floating Containers.

Floating Components that are programatically rendered will not have a floatParent property.

For floating Components which are child items of a Container, the floatParent will be the floating ancestor Container which is responsible for the base z-index value of all its floating descendants. It provides a ZIndexManager which provides z-indexing services for all its descendant floating Components.

For example, the dropdown BoundList of a ComboBox which is in a Window will have the Window as its floatParent

See floating and zIndexManager

 
zIndexManager Optional. Only present for floating Components after they have been rendered. A reference to the ZIndex...
zIndexManager

Optional. Only present for floating Components after they have been rendered.

A reference to the ZIndexManager which is managing this Component's z-index.

The ZIndexManager maintains a stack of floating Component z-indices, and also provides a single modal mask which is insert just beneath the topmost visible modal floating Component.

Floating Components may be brought to the front or sent to the back of the z-index stack.

This defaults to the global ZIndexManager for floating Components that are programatically rendered.

For floating Components which are added to a Container, the ZIndexManager is acquired from the first ancestor Container found which is floating, or if not found the global ZIndexManager is used.

See floating and floatParent

Defined By

Methods

 

Parameters

  • config : Object

Returns

  • Void
 
Ext.util.Observable.capture( Observable o, Function fn, [Object scope]) : Void
Starts capture on the specified Observable. All events will be passed to the supplied function with the event name + ...
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

  • o : Observable
    The Observable to capture events from.
  • fn : Function
    The function to call when an event is fired.
  • scope : Object
    (optional) The scope (this reference) in which the function is executed. Defaults to the Observable firing the event.

Returns

  • Void
 
Ext.util.Observable.observe( Function c, Object listeners) : Void
Sets observability on the passed class constructor. This makes any event fired on any instance of the passed class a...

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:

Ext.util.Observable.observe(Ext.data.Connection);
Ext.data.Connection.on('beforerequest', function(con, options) {
    console.log('Ajax request made to ' + options.url);
});

Parameters

  • c : Function

    The class constructor to make observable.

  • listeners : Object

    An object containing a series of listeners to add. See addListener.

Returns

  • Void
 
Removes all added captures from the Observable.
Removes all added captures from the Observable.

Parameters

  • o : Observable
    The Observable to release

Returns

  • Void
 
add( ...Object/Array component) : Ext.Component/Array
Adds Component(s) to this Container. ##Description:## - Fires the beforeadd event before adding. - The Container's ...

Adds Component(s) to this Container.

Description:

Notes:

If the Container is already rendered when add is called, you may need to call doLayout to refresh the view which causes any unrendered child Components to be rendered. This is required so that you can add multiple child components if needed while only refreshing the layout once. For example:

r tb = new Ext.toolbar.Toolbar();
.render(document.body);  // toolbar is rendered
.add({text:'Button 1'}); // add multiple items (defaultType for Toolbar is 'button')
.add({text:'Button 2'});

Warning:

Containers directly managed by the BorderLayout layout manager may not be removed or added. See the Notes for BorderLayout for more details.

Parameters

  • component : ...Object/Array

    Either one or more Components to add or an Array of Components to add. See items for additional information.

Returns

  • Ext.Component/Array   The Components that were added.
 
Adds a CSS class to the top level element representing this component.
Adds a CSS class to the top level element representing this component.

Returns

  • Void
 
addDocked( Object/Array component., [Number pos]) : Void
Adds docked item(s) to the panel.
Adds docked item(s) to the panel.

Parameters

  • component. : Object/Array
    The Component or array of components to add. The components must include a 'dock' parameter on each component to indicate where it should be docked ('top', 'right', 'bottom', 'left').
  • pos : Number
    (optional) The index at which the Component will be added

Returns

  • Void
 
addEvents( Object|String o, string Optional.) : Void
Adds 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

  • o : Object|String
    Either an object with event names as properties with a value of true or the first event name string if multiple event names are being passed as separate parameters.
  • Optional. : string
    Event name if multiple event names are being passed as separate parameters. Usage:
    this.addEvents('storeloaded', 'storecleared');

Returns

  • Void
 
addListener( String eventName, Function handler, [Object scope], [Object options]) : Void
Appends an event handler to this object.
Appends an event handler to this object.

Parameters

  • eventName : String
    The name of the event to listen for. May also be an object who's property names are event names. See
  • handler : Function
    The method the event invokes.
  • scope : Object
    (optional) The scope (this reference) in which the handler function is executed. If omitted, defaults to the object which fired the event.
  • options : Object
    (optional) An object containing handler configuration. properties. This may contain any of the following properties:
    • scope : Object
      The scope (this reference) in which the handler function is executed. If omitted, defaults to the object which fired the event.
    • delay : Number
      The number of milliseconds to delay the invocation of the handler after the event fires.
    • single : Boolean
      True to add a handler to handle just the next firing of the event, and then remove itself.
    • buffer : Number
      Causes the handler to be scheduled to run in an Ext.util.DelayedTask delayed by the specified number of milliseconds. If the event fires again within that time, the original handler is not invoked, but the new handler is scheduled in its place.
    • target : Observable
      Only call the handler if the event was fired on the target Observable, not if the event was bubbled up from a child Observable.
    • element : String
      This option is only valid for listeners bound to Components. The name of a Component property which references an element to add a listener to.

      This option is useful during Component construction to add DOM event listeners to elements of Components which will exist only after the Component is rendered. For example, to add a click listener to a Panel's body:

      new Ext.panel.Panel({
          title: 'The title',
          listeners: {
              click: this.handlePanelClick,
              element: 'body'
          }
      });

      When added in this way, the options available are the options applicable to Ext.core.Element-addListener


    Combining Options
    Using the options argument, it is possible to combine different types of listeners:

    A delayed, one-time listener.

    myPanel.on('hide', this.handleClick, this, {
    single: true,
    delay: 100
    });

    Attaching multiple handlers in 1 call
    The method also allows for a single argument to be passed which is a config object containing properties which specify multiple events. For example:

    myGridPanel.on({
        cellClick: this.onCellClick,
        mouseover: this.onMouseOver,
        mouseout: this.onMouseOut,
        scope: this // Important. Ensure "this" is correct during handler execution
    });
    .

Returns

  • Void
 
addManagedListener( Observable|Element item, Object|String ename, Function fn, Object scope, Object opt) : Void
Adds listeners to any Observable object (or Element) which are automatically removed when this Component is destroyed...

Adds listeners to any Observable object (or Element) which are automatically removed when this Component is destroyed.

Parameters

  • item : Observable|Element
    The item to which to add a listener/listeners.
  • ename : Object|String
    The event name, or an object containing event name properties.
  • fn : Function
    Optional. If the ename parameter was an event name, this is the handler function.
  • scope : Object
    Optional. If the ename parameter was an event name, this is the scope (this reference) in which the handler function is executed.
  • opt : Object
    Optional. If the ename parameter was an event name, this is the addListener options.

Returns

  • Void
 
afterComponentLayout( Ext.Component this, Number adjWidth, Number adjHeight) : Void

Parameters

  • this : Ext.Component
  • adjWidth : Number
    The box-adjusted width that was set
  • adjHeight : Number
    The box-adjusted height that was set

Returns

  • Void
 
alignTo( Mixed element, String position, [Array offsets]) : Component
Aligns this floating Component to the specified element
Aligns this floating Component to the specified element

Parameters

  • element : Mixed
    The element to align to.
  • position : String
    (optional, defaults to "tl-bl?") The position to align to (see Ext.core.Element-alignTo for more details).
  • offsets : Array
    (optional) Offset the positioning by [x, y]

Returns

  • Component   this
 
animate( Ext.fx.Anim animObj) : Ext.core.Element
Perform custom animation on this element.
Perform custom animation on this element.

Parameters

  • animObj : Ext.fx.Anim
    An Ext.fx Anim object

Returns

  • Ext.core.Element   this
 
bubble( Function fn, [Object scope], [Array args]) : Ext.Component
Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of...
Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of function call will be the scope provided or the current component. The arguments to the function will be the args provided or the current component. If the function returns false at any point, the bubble is stopped.

Parameters

  • fn : Function
    The function to call
  • scope : Object
    (optional) The scope of the function (defaults to current node)
  • args : Array
    (optional) The args to call the function with (default to passing the current component)

Returns

  • Ext.Component   this
 
Center this Component in its container.
Center this Component in its container.

Returns

  • Component   this
 
child( String selector) : Ext.Component
Retrieves the first direct child of this container which matches the passed selector. The passed in selector must com...
Retrieves the first direct child of this container which matches the passed selector. The passed in selector must comply with an Ext.ComponentQuery selector.

Parameters

  • selector : String
    An Ext.ComponentQuery selector

Returns

  • Ext.Component
 
Removes all listeners for this object including the managed listeners
Removes all listeners for this object including the managed listeners

Returns

  • Void
 
Removes all managed listeners for this object.
Removes all managed listeners for this object.

Returns

  • Void
 
cloneConfig( Object overrides) : Ext.Component
Clone the current component using the original config values passed into this instance by default.
Clone the current component using the original config values passed into this instance by default.

Parameters

  • overrides : Object
    A new config containing any properties to override in the cloned version. An id property can be passed on this object, otherwise one will be generated to avoid duplicates.

Returns

  • Ext.Component   clone The cloned copy of this component
 
Closes the Panel. By default, this method, removes it from the DOM, destroys the Panel object and all its descendant ...

Closes the Panel. By default, this method, removes it from the DOM, destroys the Panel object and all its descendant Components. The beforeclose event is fired before the close happens and will cancel the close action if it returns false.

Note: This method is not affected by the closeAction setting which only affects the action triggered when clicking the 'close' tool in the header. To hide the Panel without destroying it, call hide.

Returns

  • Void
 
collapse( Number direction., Boolean animate) : Ext.panel.Panel
Collapses the panel body so that the body becomes hidden. Docked Components parallel to the border towards which the ...
Collapses the panel body so that the body becomes hidden. Docked Components parallel to the border towards which the collapse takes place will remain visible. Fires the beforecollapse event which will cancel the collapse action if it returns false.

Parameters

  • direction. : Number
    The direction to collapse towards. Must be one of
    • Ext.Component.DIRECTION_TOP
    • Ext.Component.DIRECTION_RIGHT
    • Ext.Component.DIRECTION_BOTTOM
    • Ext.Component.DIRECTION_LEFT
  • animate : Boolean
    True to animate the transition, else false (defaults to the value of the animCollapse panel config)

Returns

  • Ext.panel.Panel   this
 
Collapse all nodes
Collapse all nodes

Returns

  • Void
 
constructor( config undefined) : Void
Construction of a floating Component involves transforming the el into a Layer based around that el.
Construction of a floating Component involves transforming the el into a Layer based around that el.

Parameters

  • : config

Returns

  • Void
 
Destroys the Component.
Destroys the Component.

Returns

  • Void
 
Handles autoRender. Floating Components may have an ownerCt. If they are asking to be constrained, constrain them wit...
Handles autoRender. Floating Components may have an ownerCt. If they are asking to be constrained, constrain them within that ownerCt, and have their z-index managed locally. Floating Components are always rendered to document.body

Returns

  • Void
 
This method needs to be called whenever you change something on this component that requires the Component's layout t...
This method needs to be called whenever you change something on this component that requires the Component's layout to be recalculated.

Returns

  • Ext.container.Container   this
 
doConstrain( Mixed constrainTo) : Void
Moves this floating Component into a constrain region. By default, this Component is constrained to be within the con...

Moves this floating Component into a constrain region.

By default, this Component is constrained to be within the container it was added to, or the element it was rendered to.

An alternative constraint may be passed.

Parameters

  • constrainTo : Mixed
    Optional. The Element or Region into which this Component is to be constrained.

Returns

  • Void
 
down( String selector) : Ext.Component
Retrieves the first descendant of this container which matches the passed selector. The passed in selector must compl...
Retrieves the first descendant of this container which matches the passed selector. The passed in selector must comply with an Ext.ComponentQuery selector.

Parameters

  • selector : String
    An Ext.ComponentQuery selector

Returns

  • Ext.Component
 
enableBubble( String/Array events) : Void
Enables 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.getBubbleTarget() if present. There is no implementation in the Observable base class.

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:

Ext.override(Ext.form.Field, {
//  Add functionality to Field's initComponent to enable the change event to bubble
initComponent : Ext.Function.createSequence(Ext.form.Field.prototype.initComponent, function() {
    this.enableBubble('change');
}),

//  We know that we want Field's events to bubble directly to the FormPanel.
getBubbleTarget : function() {
    if (!this.formPanel) {
        this.formPanel = this.findParentByType('form');
    }
    return this.formPanel;
}
});

var myForm = new Ext.formPanel({
title: 'User Details',
items: [{
    ...
}],
listeners: {
    change: function() {
        // Title goes red if form has been modified.
        myForm.header.setStyle('color', 'red');
    }
}
});

Parameters

  • events : String/Array
    The event name to bubble, or an Array of event names.

Returns

  • Void
 
expand( Boolean animate) : Ext.panel.Panel
Expands the panel body so that it becomes visible. Fires the beforeexpand event which will cancel the expand action ...
Expands the panel body so that it becomes visible. Fires the beforeexpand event which will cancel the expand action if it returns false.

Parameters

  • animate : Boolean
    True to animate the transition, else false (defaults to the value of the animCollapse panel config)

Returns

  • Ext.panel.Panel   this
 
Expand all nodes
Expand all nodes

Returns

  • Void
 
expandPath( String path, [String attr], [Function callback]) : Void
Expands a specified path in this TreePanel. A path can be retrieved from a node with Ext.data.Node-getPath
Expands a specified path in this TreePanel. A path can be retrieved from a node with Ext.data.Node-getPath

Parameters

  • path : String
  • attr : String
    (optional) The attribute used in the path (see Ext.data.Node-getPath for more info)
  • callback : Function
    (optional) The callback to call when the expand is complete. The callback will be called with (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.

Returns

  • Void
 
This method finds the topmost active layout who's processing will eventually determine the size and position of this ...

This method finds the topmost active layout who's processing will eventually determine the size and position of this Component.

This method is useful when dynamically adding Components into Containers, and some processing must take place after the final sizing and positioning of the Component has been performed.

Returns

  • Void
 
findParentBy( Function fn) : Ext.container.Container
Find a container above this component at any level by a custom function. If the passed function returns true, the con...
Find a container above this component at any level by a custom function. If the passed function returns true, the container will be returned.

Parameters

  • fn : Function
    The custom function to call with the arguments (container, this component).

Returns

  • Ext.container.Container   The first Container for which the custom function returns true
 
findParentByType( String/Class xtype) : Ext.container.Container
Find a container above this component at any level by xtype or class See also the up method.

Find a container above this component at any level by xtype or class

See also the up method.

Parameters

  • xtype : String/Class
    The xtype string for a component, or the class of the component directly

Returns

  • Ext.container.Container   The first Container which matches the given xtype or class
 
fireEvent( String eventName, Object... args) : Boolean
Fires 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

  • eventName : String
    The name of the event to fire.
  • args : Object...
    Variable number of parameters are passed to handlers.

Returns

  • Boolean   returns false if any of the handlers return false otherwise it returns true.
 
focus( [Boolean selectText], [Boolean/Number delay]) : Ext.Component
Try to focus this component.
Try to focus this component.

Parameters

  • selectText : Boolean
    (optional) If applicable, true to also select the text in this component
  • delay : Boolean/Number
    (optional) Delay the focus this number of milliseconds (true for 10 milliseconds).

Returns

  • Ext.Component   this
 
getBox( [Boolean local]) : Object
Gets the current box measurements of the component's underlying element.
Gets the current box measurements of the component's underlying element.

Parameters

  • local : Boolean
    (optional) If true the element's left and top are returned instead of page XY (defaults to false)

Returns

  • Object   box An object in the format {x, y, width, height}
 
Provides the link for Observable's fireEvent method to bubble up the ownership hierarchy.
Provides the link for Observable's fireEvent method to bubble up the ownership hierarchy.

Returns

  • Ext.container.Container   the Container which owns this Component.
 
getChecked( [String attribute], [TreeNode startNode]) : Array
Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. 'id')
Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. 'id')

Parameters

  • attribute : String
    (optional) Defaults to null (return the actual nodes)
  • startNode : TreeNode
    (optional) The node to start from, defaults to the root

Returns

  • Array
 
Return the immediate child Component in which the passed element is located.
Return the immediate child Component in which the passed element is located.

Parameters

  • The : el
    element to test.

Returns

  • Component   The child item which contains the passed element.
 
getDockedComponent( String/Number comp) : Ext.Component
Finds a docked component by id, itemId or position. Also see getDockedItems
Finds a docked component by id, itemId or position. Also see getDockedItems

Parameters

  • comp : String/Number
    The id, itemId or position of the docked component (see getComponent for details)

Returns

  • Ext.Component   The docked component (if found)
 
getDockedItems( String cqSelector) : Array
Retrieve an array of all currently docked Components.
Retrieve an array of all currently docked Components.

Parameters

  • cqSelector : String
    A ComponentQuery selector string to filter the returned items.

Returns

  • Array   An array of components.
 
Retrieves the top level element representing this component.
Retrieves the top level element representing this component.

Returns

  • Void
 
Gets the current height of the component's underlying element.
Gets the current height of the component's underlying element.

Returns

  • Number
 
Retrieves the id of this component. Will autogenerate an id if one has not already been set.
Retrieves the id of this component. Will autogenerate an id if one has not already been set.

Returns

  • Void
 
getInsertPosition( String/Number/Element/HTMLElement position) : HTMLElement
This function takes the position argument passed to onRender and returns a DOM element that you can use in the insert...
This function takes the position argument passed to onRender and returns a DOM element that you can use in the insertBefore.

Parameters

  • position : String/Number/Element/HTMLElement
    Index, element id or element you want to put this component before.

Returns

  • HTMLElement   DOM element that you can use in the insertBefore
 
Returns the default Ext.tree.TreeLoader for this TreePanel.
Returns the default Ext.tree.TreeLoader for this TreePanel.

Returns

  • Ext.tree.TreeLoader   The TreeLoader for this TreePanel.
 
Gets a node in this tree by its id
Gets a node in this tree by its id

Parameters

  • id : String

Returns

  • Node
 
Retrieves a plugin by its pluginId which has been bound to this component.
Retrieves a plugin by its pluginId which has been bound to this component.

Returns

  • Void
 
getPosition( [Boolean local]) : Array
Gets the current XY position of the component's underlying element.
Gets the current XY position of the component's underlying element.

Parameters

  • local : Boolean
    (optional) If true the element's left and top are returned instead of page XY (defaults to false)

Returns

  • Array   The XY position of the element (e.g., [100, 200])
 
Returns this root node for this tree
Returns this root node for this tree

Returns

  • Node
 
Returns the selection model used by this TreePanel.
Returns the selection model used by this TreePanel.

Returns

  • TreeSelectionModel   The selection model used by this TreePanel
 
Gets the current size of the component's underlying element.
Gets the current size of the component's underlying element.

Returns

  • Object   An object containing the element's size {width: (element width), height: (element height)}
 
Returns the underlying Element for this tree
Returns the underlying Element for this tree

Returns

  • Ext.core.Element   The Element
 
Gets the current width of the component's underlying element.
Gets the current width of the component's underlying element.

Returns

  • Number
 
Gets the xtype for this component as registered with Ext.ComponentMgr. For a list of all available xtypes, see the Ex...
Gets the xtype for this component as registered with Ext.ComponentMgr. For a list of all available xtypes, see the Ext.Component header. Example usage:
var t = new Ext.form.Text();
alert(t.getXType());  // alerts 'textfield'

Returns

  • String   The xtype
 
Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all available xtypes, see the Ext...

Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all available xtypes, see the Ext.Component header.

If using your own subclasses, be aware that a Component must register its own xtype to participate in determination of inherited xtypes.

Example usage:

var t = new Ext.form.Text();
alert(t.getXTypes());  // alerts 'component/field/textfield'

Returns

  • String   The xtype hierarchy string
 
Returns thq current animation if the element has any effects actively running or queued, else returns false.
Returns thq current animation if the element has any effects actively running or queued, else returns false.

Returns

  • Mixed   anim if element has active effects, else false
 
hasListener( String eventName) : Boolean
Checks 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

  • eventName : String
    The name of the event to check for

Returns

  • Boolean   True if the event is being listened for, else false
 
insertDocked( Number pos, Object/Array component.) : Void
Inserts docked item(s) to the panel at the indicated position.
Inserts docked item(s) to the panel at the indicated position.

Parameters

  • pos : Number
    The index at which the Component will be inserted
  • component. : Object/Array
    The Component or array of components to add. The components must include a 'dock' paramater on each component to indicate where it should be docked ('top', 'right', 'bottom', 'left').

Returns

  • Void
 
Method to determine whether this Component is currently disabled.
Method to determine whether this Component is currently disabled.

Returns

  • Boolean   the disabled state of this Component.
 
Method to determine whether this Component is draggable.
Method to determine whether this Component is draggable.

Returns

  • Boolean   the draggable state of this component.
 
Method to determine whether this Component is droppable.
Method to determine whether this Component is droppable.

Returns

  • Boolean   the droppable state of this component.
 
Method to determine whether this Component is floating.
Method to determine whether this Component is floating.

Returns

  • Boolean   the floating state of this component.
 
Method to determine whether this Component is currently set to hidden.
Method to determine whether this Component is currently set to hidden.

Returns

  • Boolean   the hidden state of this Component.
 
Returns true if this component is visible.
Returns true if this component is visible.

Parameters

  • deep. : Boolean

    Optional. Pass true to interrogate the visibility status of all parent Containers to determine whether this Component is truly visible to the user.

    Generally, to determine whether a Component is hidden, the no argument form is needed. For example when creating dynamically laid out UIs in a hidden Container before showing them.

Returns

  • Boolean   True if this component is visible, false otherwise.
 
isXType( String xtype, [Boolean shallow]) : Boolean
Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended from th...

Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended from the xtype (default) or whether it is directly of the xtype specified (shallow = true).

If using your own subclasses, be aware that a Component must register its own xtype to participate in determination of inherited xtypes.

For a list of all available xtypes, see the Ext.Component header.

Example usage:

var t = new Ext.form.Text();
var isText = t.isXType('textfield');        // true
var isBoxSubclass = t.isXType('field');       // true, descended from Ext.form.Field
var isBoxInstance = t.isXType('field', true); // false, not a direct Ext.form.Field instance

Parameters

  • xtype : String
    The xtype to check for this Component
  • shallow : Boolean
    (optional) False to check whether this Component is descended from the xtype (this is the default), or true to check whether this Component is directly of the specified xtype.

Returns

  • Boolean   True if this component descends from the specified xtype, false otherwise.
 
move( Number fromIdx, Number toIdx) : Ext.Component
Moves a Component within the Container
Moves a Component within the Container

Parameters

  • fromIdx : Number
    The index the Component you wish to move is currently at.
  • toIdx : Number
    The new index for the Component.

Returns

  • Ext.Component   component The Component (or config object) that was moved.
 
Returns the next sibling of this Component. Optionally selects the next sibling which matches the passed ComponentQue...

Returns the next sibling of this Component.

Optionally selects the next sibling which matches the passed ComponentQuery selector.

May also be refered to as prev()

Parameters

  • Optional. : selector
    A ComponentQuery selector to filter the following items.

Returns

  • Void
 
on( String eventName, Function handler, [Object scope], [Object options]) : Void
Appends an event handler to this object (shorthand for addListener.)
Appends an event handler to this object (shorthand for addListener.)

Parameters

  • eventName : String
    The type of event to listen for
  • handler : Function
    The method the event invokes
  • scope : Object
    (optional) The scope (this reference) in which the handler function is executed. If omitted, defaults to the object which fired the event.
  • options : Object
    (optional) An object containing handler configuration.

Returns

  • Void
 
Returns the previous sibling of this Component. Optionally selects the previous sibling which matches the passed Comp...

Returns the previous sibling of this Component.

Optionally selects the previous sibling which matches the passed ComponentQuery selector.

May also be refered to as prev()

Parameters

  • Optional. : selector
    A ComponentQuery selector to filter the preceding items.

Returns

  • Void
 
query( String selector) : Array
Retrieves all descendant components which match the passed selector. Executes an Ext.ComponentQuery.query using this ...
Retrieves all descendant components which match the passed selector. Executes an Ext.ComponentQuery.query using this container as its root.

Parameters

  • selector : String
    Selector complying to an Ext.ComponentQuery selector

Returns

  • Array   Ext.Component's which matched the selector
 
relayEvents( Object origin, Array events) : Void
Relays 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

  • origin : Object
    The Observable whose events this object is to relay.
  • events : Array
    Array of event names to relay.

Returns

  • Void
 
Removes a CSS class from the top level element representing this component.
Removes a CSS class from the top level element representing this component.

Returns

  • Void
 
removeDocked( Ext.Component item., [Boolean autoDestroy]) : Void
Removes the docked item from the panel.
Removes the docked item from the panel.

Parameters

  • item. : Ext.Component
    The Component to remove.
  • autoDestroy : Boolean
    (optional) Destroy the component after removal.

Returns

  • Void
 
removeListener( String eventName, Function handler, [Object scope]) : Void
Removes an event handler.
Removes an event handler.

Parameters

  • eventName : String
    The type of event the handler was associated with.
  • handler : Function
    The handler to remove. This must be a reference to the function passed into the addListener call.
  • scope : Object
    (optional) The scope originally specified for the handler.

Returns

  • Void
 
removeManagedListener( Observable|Element item, Object|String ename, Function fn, Object scope) : Void
Removes listeners that were added by the mon method.
Removes listeners that were added by the mon method.

Parameters

  • item : Observable|Element
    The item from which to remove a listener/listeners.
  • ename : Object|String
    The event name, or an object containing event name properties.
  • fn : Function
    Optional. If the ename parameter was an event name, this is the handler function.
  • scope : Object
    Optional. If the ename parameter was an event name, this is the scope (this reference) in which the handler function is executed.

Returns

  • 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.

Returns

  • Void
 
selectPath( String path, [String attr], [Function callback]) : Void
Selects the node in this tree at the specified path. A path can be retrieved from a node with Ext.data.Node-getPath
Selects the node in this tree at the specified path. A path can be retrieved from a node with Ext.data.Node-getPath

Parameters

  • path : String
  • attr : String
    (optional) The attribute used in the path (see Ext.data.Node-getPath for more info)
  • callback : Function
    (optional) The callback to call when the selection is complete. The callback will be called with (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.

Returns

  • Void
 
Ensures that all effects queued after sequenceFx is called on the element are run in sequence. This is the opposite ...
Ensures that all effects queued after sequenceFx is called on the element are run in sequence. This is the opposite of syncFx.

Returns

  • Ext.core.Element   The Element
 
Makes this the active Component by showing its shadow, or deactivates it by hiding its shadow. This method also fire...
Makes this the active Component by showing its shadow, or deactivates it by hiding its shadow. This method also fires the activate or deactivate event depending on which action occurred. This method is called internally by Ext.ZIndexManager.

Parameters

  • active : Boolean
    True to activate the Component, false to deactivate it (defaults to false)

Returns

  • Void
 
setAutoScroll( Boolean scroll) : Ext.Component
Sets the overflow on the content element of the component.
Sets the overflow on the content element of the component.

Parameters

  • scroll : Boolean
    True to allow the Component to auto scroll.

Returns

  • Ext.Component   this
 
Sets the dock position of this component in its parent panel. Note that this only has effect if this item is part of ...
Sets the dock position of this component in its parent panel. Note that this only has effect if this item is part of the dockedItems collection of a parent that has a DockLayout (note that any Panel has a DockLayout by default)

Returns

  • Component   this
 
setHeight( Number height) : Ext.Component
Sets the height of the component. This method fires the resize event.
Sets the height of the component. This method fires the resize event.

Parameters

  • height : Number
    The new height to set. This may be one of:
    • A Number specifying the new height in the Element's Ext.core.Element-defaultUnits (by default, pixels).
    • A String used to set the CSS height style.
    • undefined to leave the height unchanged.

Returns

  • Ext.Component   this
 
Set the iconCls for the panel's header. See Ext.panel.Header-iconCls.
Set the iconCls for the panel's header. See Ext.panel.Header-iconCls.

Parameters

  • : cls

Returns

  • Void
 
setLoading( Boolean/Object load, Boolean targetEl) : Ext.LoadMask
This method allows you to show or hide a LoadMask on top of this component.
This method allows you to show or hide a LoadMask on top of this component.

Parameters

  • load : Boolean/Object
    True to show the default LoadMask or a config object that will be passed to the LoadMask constructor. False to hide the current LoadMask.
  • targetEl : Boolean
    True to mask the targetEl of this Component instead of the this.el. For example, setting this to true on a Panel will cause only the body to be masked. (defaults to false)

Returns

  • Ext.LoadMask   The LoadMask instance that has just been shown.
 
setPagePosition( Number x, Number y, Mixed animate) : Ext.Component
Sets the page XY position of the component. To set the left and top instead, use setPosition. This method fires the ...
Sets the page XY position of the component. To set the left and top instead, use setPosition. This method fires the move event.

Parameters

  • x : Number
    The new x position
  • y : Number
    The new y position
  • animate : Mixed
    If passed, the Component is animated into its new position. If this parameter is a number, it is used as the animation duration in milliseconds.

Returns

  • Ext.Component   this
 
setPosition( Number left, Number top, Mixed animate) : Ext.Component
Sets the left and top of the component. To set the page XY position instead, use setPagePosition. This method fires ...
Sets the left and top of the component. To set the page XY position instead, use setPagePosition. This method fires the move event.

Parameters

  • left : Number
    The new left
  • top : Number
    The new top
  • animate : Mixed
    If true, the Component is animated into its new position. You may also pass an animation configuration.

Returns

  • Ext.Component   this
 
Sets the root node for this tree. If the TreePanel has already rendered a root node, the previous root node (and all ...
Sets the root node for this tree. If the TreePanel has already rendered a root node, the previous root node (and all of its descendants) are destroyed before the new root node is rendered.

Parameters

  • node : Node

Returns

  • Node
 
setSize( Mixed width, Mixed height) : Ext.Component
Sets the width and height of this Component. This method fires the resize event. This method can accept either width ...
Sets the width and height of this Component. This method fires the resize event. This method can accept either width and height as separate arguments, or you can pass a size object like {width:10, height:20}.

Parameters

  • width : Mixed
    The new width to set. This may be one of:
    • A Number specifying the new width in the Element's Ext.core.Element-defaultUnits (by default, pixels).
    • A String used to set the CSS width style.
    • A size object in the format {width: widthValue, height: heightValue}.
    • undefined to leave the width unchanged.
  • height : Mixed
    The new height to set (not required if a size object is passed as the first arg). This may be one of:
    • A Number specifying the new height in the Element's Ext.core.Element-defaultUnits (by default, pixels).
    • A String used to set the CSS height style. Animation may not be used.
    • undefined to leave the height unchanged.

Returns

  • Ext.Component   this
 
Set a title for the panel's header. See Ext.panel.Header-title.
Set a title for the panel's header. See Ext.panel.Header-title.

Parameters

  • title : String

Returns

  • Void
 
setVisible( Boolean visible) : Ext.Component
Convenience function to hide or show this component by boolean.
Convenience function to hide or show this component by boolean.

Parameters

  • visible : Boolean
    True to show, false to hide

Returns

  • Ext.Component   this
 
setWidth( Number width) : Ext.Component
Sets the width of the component. This method fires the resize event.
Sets the width of the component. This method fires the resize event.

Parameters

  • width : Number
    The new width to setThis may be one of:

Returns

  • Ext.Component   this
 
show( [String/Element animateTarget], [Function callback], [Object scope]) : Component
Shows this Component, rendering it first if Ext.Component-autoRender is true. For a Window, it activates it and bring...

Shows this Component, rendering it first if Ext.Component-autoRender is true.

For a Window, it activates it and brings it to front if hidden.

Parameters

  • animateTarget : String/Element
    (optional) The target element or id from which the Component should animate while opening (defaults to null with no animation)
  • callback : Function
    (optional) A callback function to call after the window is displayed. Only necessary if animation was specified.
  • scope : Object
    (optional) The scope (this reference) in which the callback is executed. Defaults to this Component.

Returns

  • Component   this
 
Stops any running effects and clears the element's internal effects queue if it contains any additional effects that ...
Stops any running effects and clears the element's internal effects queue if it contains any additional effects that haven't started yet.

Returns

  • Ext.core.Element   The Element
 
suspendEvents( Boolean queueSuspended) : Void
Suspend the firing of all events. (see resumeEvents)
Suspend the firing of all events. (see resumeEvents)

Parameters

  • queueSuspended : Boolean
    Pass as true to queue up suspended events to be fired after the resumeEvents call instead of discarding all suspended events;

Returns

  • Void
 
Ensures that all effects queued after syncFx is called on the element are run concurrently. This is the opposite of ...
Ensures that all effects queued after syncFx is called on the element are run concurrently. This is the opposite of sequenceFx.

Returns

  • Ext.core.Element   The Element
 
Sends this Component to the back of (lower z-index than) any other visible windows
Sends this Component to the back of (lower z-index than) any other visible windows

Returns

  • Component   this
 
toFront( [Boolean preventFocus]) : Component
Brings this floating Component to the front of any other visible, floating Components managed by the same ZIndexManag...

Brings this floating Component to the front of any other visible, floating Components managed by the same ZIndexManager

If this Component is modal, inserts the modal mask just below this Component in the z-index stack.

Parameters

  • preventFocus : Boolean
    (optional) Specify true to prevent the Component from being focused.

Returns

  • Component   this
 
Shortcut for performing an expand or collapse based on the current state of the panel.
Shortcut for performing an expand or collapse based on the current state of the panel.

Returns

  • Ext.panel.Panel   this
 
un( String eventName, Function handler, [Object scope]) : Void
Removes an event handler (shorthand for removeListener.)
Removes an event handler (shorthand for removeListener.)

Parameters

  • eventName : String
    The type of event the handler was associated with.
  • handler : Function
    The handler to remove. This must be a reference to the function passed into the addListener call.
  • scope : Object
    (optional) The scope originally specified for the handler.

Returns

  • Void
 
up( String selector) : Ext.container.Container
Walks up the ownerCt axis looking for an ancestor Container which matches the passed simple selector. Example:var own...

Walks up the ownerCt axis looking for an ancestor Container which matches the passed simple selector.

Example:

var owningTabContainer = grid.up('tabcontainer');

Parameters

  • selector : String
    Optional. The simple selector to test.

Returns

  • Ext.container.Container   The matching ancestor Container (or undefined if no match was found).
 
update( Mixed htmlOrData, [Boolean loadScripts], [Function callback]) : Void
Update the content area of a component.
Update the content area of a component.

Parameters

  • htmlOrData : Mixed
    If this component has been configured with a template via the tpl config then it will use this argument as data to populate the template. If this component was not configured with a template, the components content area will be updated via Ext.core.Element update
  • loadScripts : Boolean
    (optional) Only legitimate when using the html configuration. Defaults to false
  • callback : Function
    (optional) Only legitimate when using the html configuration. Callback to execute when scripts have finished loading

Returns

  • Void
 
updateBox( Object box) : Ext.Component
Sets the current box measurements of the component's underlying element.
Sets the current box measurements of the component's underlying element.

Parameters

  • box : Object
    An object in the format {x, y, width, height}

Returns

  • Ext.Component   this
Defined By

Events

 
Fires after a Component has been visually activated.
Fires after a Component has been visually activated.

Parameters

  • this : Ext.Component
 
added( Ext.Component this, Ext.container.Container container, Number pos)
Fires after a Component had been added to a Container.
Fires after a Component had been added to a Container.

Parameters

  • this : Ext.Component
  • container : Ext.container.Container
    Parent Container
  • pos : Number
    position of Component
 
afterlayout( Ext.container.Container this, ContainerLayout layout)
Fires when the components in this container are arranged by the associated layout manager.
Fires when the components in this container are arranged by the associated layout manager.

Parameters

  • this : Ext.container.Container
  • layout : ContainerLayout
    The ContainerLayout implementation for this container
 
Fires after the component rendering is finished. The afterrender event is fired after this Component has been rendere...

Fires after the component rendering is finished.

The afterrender event is fired after this Component has been rendered, been postprocesed by any afterRender method defined for the Component, and, if stateful, after state has been restored.

Parameters

  • this : Ext.Component
 
append( Tree tree, Node parent, Node node, Number index)
Fires when a new child node is appended to a node in this tree.
Fires when a new child node is appended to a node in this tree.

Parameters

  • tree : Tree
    The owner tree
  • parent : Node
    The parent node
  • node : Node
    The newly appended node
  • index : Number
    The index of the newly appended node
 
Fires before a Component has been visually activated. Returning false from an event listener can prevent the activate...
Fires before a Component has been visually activated. Returning false from an event listener can prevent the activate from occurring.

Parameters

  • this : Ext.Component
 
beforeappend( Tree tree, Node parent, Node node)
Fires before a new child is appended to a node in this tree, return false to cancel the append.
Fires before a new child is appended to a node in this tree, return false to cancel the append.

Parameters

  • tree : Tree
    The owner tree
  • parent : Node
    The parent node
  • node : Node
    The child node to be appended
 
beforecardswitch( Ext.container.Container this, Ext.Component newCard, Ext.Component oldCard, Number index, Boolean animated)
Fires before this container switches the active card. This event is only available if this container uses a CardLayou...
Fires before this container switches the active card. This event is only available if this container uses a CardLayout. Note that TabPanel and Carousel both get a CardLayout by default, so both will have this event. A handler can return false to cancel the card switch.

Parameters

  • this : Ext.container.Container
  • newCard : Ext.Component
    The card that will be switched to
  • oldCard : Ext.Component
    The card that will be switched from
  • index : Number
    The index of the card that will be switched to
  • animated : Boolean
    True if this cardswitch will be animated
 
Fires right before the child nodes for a node are rendered
Fires right before the child nodes for a node are rendered

Parameters

  • node : Node
    The node
 
beforeclick( Node node, Ext.EventObject e)
Fires before click processing on a node. Return false to cancel the default action.
Fires before click processing on a node. Return false to cancel the default action.

Parameters

  • node : Node
    The node
  • e : Ext.EventObject
    The event object
 
beforecollapsenode( Node node, Boolean deep, Boolean anim)
Fires before a node is collapsed, return false to cancel.
Fires before a node is collapsed, return false to cancel.

Parameters

  • node : Node
    The node
  • deep : Boolean
  • anim : Boolean
 
beforedblclick( Node node, Ext.EventObject e)
Fires before double click processing on a node. Return false to cancel the default action.
Fires before double click processing on a node. Return false to cancel the default action.

Parameters

  • node : Node
    The node
  • e : Ext.EventObject
    The event object
 
Fires before a Component has been visually deactivated. Returning false from an event listener can prevent the deacti...
Fires before a Component has been visually deactivated. Returning false from an event listener can prevent the deactivate from occurring.

Parameters

  • this : Ext.Component
 
Fires before the component is destroyed. Return false from an event handler to stop the destroy.
Fires before the component is destroyed. Return false from an event handler to stop the destroy.

Parameters

  • this : Ext.Component
 
beforeexpandnode( Node node, Boolean deep, Boolean anim)
Fires before a node is expanded, return false to cancel.
Fires before a node is expanded, return false to cancel.

Parameters

  • node : Node
    The node
  • deep : Boolean
  • anim : Boolean
 
Fires before the component is hidden when calling the hide method. Return false from an event handler to stop the hid...
Fires before the component is hidden when calling the hide method. Return false from an event handler to stop the hide.

Parameters

  • this : Ext.Component
 
beforeinsert( Tree tree, Node parent, Node node, Node refNode)
Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
Fires before a new child is inserted in a node in this tree, return false to cancel the insert.

Parameters

  • tree : Tree
    The owner tree
  • parent : Node
    The parent node
  • node : Node
    The child node to be inserted
  • refNode : Node
    The child node the node is being inserted before
 
Fires before a node is loaded, return false to cancel
Fires before a node is loaded, return false to cancel

Parameters

  • node : Node
    The node being loaded
 
beforemovenode( Tree tree, Node node, Node oldParent, Node newParent, Number index)
Fires before a node is moved to a new location in the tree. Return false to cancel the move.
Fires before a node is moved to a new location in the tree. Return false to cancel the move.

Parameters

  • tree : Tree
    The owner tree
  • node : Node
    The node being moved
  • oldParent : Node
    The parent of the node
  • newParent : Node
    The new parent the node is moving to
  • index : Number
    The index it is being moved to
 
Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The drop...
Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent passed to handlers has the following properties:
  • tree - The TreePanel
  • target - The node being targeted for the drop
  • data - The drag data from the drag source
  • point - The point of the drop - append, above or below
  • source - The drag source
  • rawEvent - Raw mouse event
  • dropNode - Drop node(s) provided by the source OR you can supply node(s) to be inserted by setting them on this object.
  • cancel - Set this to true to cancel the drop.
  • dropStatus - If the default drop action is cancelled but the drop is valid, setting this to true will prevent the animated 'repair' from appearing.

Parameters

  • dropEvent : Object
 
beforeremove( Tree tree, Node parent, Node node)
Fires before a child is removed from a node in this tree, return false to cancel the remove.
Fires before a child is removed from a node in this tree, return false to cancel the remove.

Parameters

  • tree : Tree
    The owner tree
  • parent : Node
    The parent node
  • node : Node
    The child node to be removed
 
Fires before the component is rendered. Return false from an event handler to stop the render.
Fires before the component is rendered. Return false from an event handler to stop the render.

Parameters

  • this : Ext.Component
 
Fires before the component is shown when calling the show method. Return false from an event handler to stop the show...
Fires before the component is shown when calling the show method. Return false from an event handler to stop the show.

Parameters

  • this : Ext.Component
 
bodyresize( Ext.panel.Panel p, Number width, Number height)
Fires after the Panel has been resized.
Fires after the Panel has been resized.

Parameters

  • p : Ext.panel.Panel
    the Panel which has been resized.
  • width : Number
    The Panel body's new width.
  • height : Number
    The Panel body's new height.
 
cardswitch( Ext.container.Container this, Ext.Component newCard, Ext.Component oldCard, Number index, Boolean animated)
Fires after this container switches the active card. If the card is switched using an animation, this event will fire...
Fires after this container switches the active card. If the card is switched using an animation, this event will fire after the animation has finished. This event is only available if this container uses a CardLayout. Note that TabPanel and Carousel both get a CardLayout by default, so both will have this event.

Parameters

  • this : Ext.container.Container
  • newCard : Ext.Component
    The card that has been switched to
  • oldCard : Ext.Component
    The card that has been switched from
  • index : Number
    The index of the card that has been switched to
  • animated : Boolean
    True if this cardswitch was animated
 
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

Parameters

  • this : Node
    This node
  • checked : Boolean
 
click( Node node, Ext.EventObject e)
Fires when a node is clicked
Fires when a node is clicked

Parameters

  • node : Node
    The node
  • e : Ext.EventObject
    The event object
 
Fires when a node is collapsed
Fires when a node is collapsed

Parameters

  • node : Node
    The node
 
containerclick( Tree this, Ext.EventObject e)
Fires when the tree container is clicked
Fires when the tree container is clicked

Parameters

  • this : Tree
  • e : Ext.EventObject
    The event object
 
Fires when the tree container is right clicked
Fires when the tree container is right clicked

Parameters

  • this : Tree
  • e : Ext.EventObject
    The event object
 
containerdblclick( Tree this, Ext.EventObject e)
Fires when the tree container is double clicked
Fires when the tree container is double clicked

Parameters

  • this : Tree
  • e : Ext.EventObject
    The event object
 
contextmenu( Node node, Ext.EventObject e)
Fires when a node is right clicked. To display a context menu in response to this event, first create a Menu object (...

Fires when a node is right clicked. To display a context menu in response to this event, first create a Menu object (see Ext.menu.Menu for details), then add a handler for this event:

new Ext.tree.TreePanel({
    title: 'My TreePanel',
    root: new Ext.tree.AsyncTreeNode({
        text: 'The Root',
        children: [
            { text: 'Child node 1', leaf: true },
            { text: 'Child node 2', leaf: true }
        ]
    }),
    contextMenu: new Ext.menu.Menu({
        items: [{
            id: 'delete-node',
            text: 'Delete Node'
        }],
        listeners: {
            itemclick: function(item) {
                switch (item.id) {
                    case 'delete-node':
                        var n = item.parentMenu.contextNode;
                        if (n.parentNode) {
                            n.remove();
                        }
                        break;
                }
            }
        }
    }),
    listeners: {
        contextmenu: function(node, e) {
            // Register the context node with the menu so that a Menu Item's handler function can access
            // it via its parentMenu property.
            node.select();
            var c = node.getOwnerTree().contextMenu;
            c.contextNode = node;
            c.showAt(e.getXY());
        }
    }
});

Parameters

  • node : Node

    The node

  • e : Ext.EventObject

    The event object

 
dblclick( Node node, Ext.EventObject e)
Fires when a node is double clicked
Fires when a node is double clicked

Parameters

  • node : Node
    The node
  • e : Ext.EventObject
    The event object
 
Fires after a Component has been visually deactivated.
Fires after a Component has been visually deactivated.

Parameters

  • this : Ext.Component
 
Fires after the component is destroyed.
Fires after the component is destroyed.

Parameters

  • this : Ext.Component
 
Fires after the component is disabled.
Fires after the component is disabled.

Parameters

  • this : Ext.Component
 
disabledchange( Node node, Boolean disabled)
Fires when the disabled status of a node changes
Fires when the disabled status of a node changes

Parameters

  • node : Node
    The node
  • disabled : Boolean
 
dragdrop( Ext.tree.TreePanel this, Ext.tree.TreeNode node, DD dd, event e)
Fires when a dragged node is dropped on a valid DD target
Fires when a dragged node is dropped on a valid DD target

Parameters

  • this : Ext.tree.TreePanel
  • node : Ext.tree.TreeNode
  • dd : DD
    The dd it was dropped on
  • e : event
    The raw browser event
 
Fires after the component is enabled.
Fires after the component is enabled.

Parameters

  • this : Ext.Component
 
enddrag( Ext.tree.TreePanel this, Ext.tree.TreeNode node, event e)
Fires when a drag operation is complete
Fires when a drag operation is complete

Parameters

  • this : Ext.tree.TreePanel
  • node : Ext.tree.TreeNode
  • e : event
    The raw browser event
 
Fires when a node is expanded
Fires when a node is expanded

Parameters

  • node : Node
    The node
 
Fires after the component is hidden. Fires after the component is hidden when calling the hide method.
Fires after the component is hidden. Fires after the component is hidden when calling the hide method.

Parameters

  • this : Ext.Component
 
insert( Tree tree, Node parent, Node node, Node refNode)
Fires when a new child node is inserted in a node in this tree.
Fires when a new child node is inserted in a node in this tree.

Parameters

  • tree : Tree
    The owner tree
  • parent : Node
    The parent node
  • node : Node
    The child node inserted
  • refNode : Node
    The child node the node was inserted before
 
Fires when a node is loaded
Fires when a node is loaded

Parameters

  • node : Node
    The node that was loaded
 
move( Ext.Component this, Number x, Number y)
Fires after the component is moved.
Fires after the component is moved.

Parameters

  • this : Ext.Component
  • x : Number
    The new x position
  • y : Number
    The new y position
 
movenode( Tree tree, Node node, Node oldParent, Node newParent, Number index)
Fires when a node is moved to a new location in the tree
Fires when a node is moved to a new location in the tree

Parameters

  • tree : Tree
    The owner tree
  • node : Node
    The node moved
  • oldParent : Node
    The old parent of this node
  • newParent : Node
    The new parent of this node
  • index : Number
    The index it was moved to
 
Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent ...
Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent passed to handlers has the following properties:
  • tree - The TreePanel
  • target - The node being targeted for the drop
  • data - The drag data from the drag source
  • point - The point of the drop - append, above or below
  • source - The drag source
  • rawEvent - Raw mouse event
  • dropNode - Drop node(s) provided by the source.
  • cancel - Set this to true to signal drop not allowed.

Parameters

  • dragOverEvent : Object
 
Fires after a DD object is dropped on a node in this tree. The dropEvent passed to handlers has the following propert...
Fires after a DD object is dropped on a node in this tree. The dropEvent passed to handlers has the following properties:
  • tree - The TreePanel
  • target - The node being targeted for the drop
  • data - The drag data from the drag source
  • point - The point of the drop - append, above or below
  • source - The drag source
  • rawEvent - Raw mouse event
  • dropNode - Dropped node(s).

Parameters

  • dropEvent : Object
 
remove( Tree tree, Node parent, Node node)
Fires when a child node is removed from a node in this tree.
Fires when a child node is removed from a node in this tree.

Parameters

  • tree : Tree
    The owner tree
  • parent : Node
    The parent node
  • node : Node
    The child node removed
 
removed( Ext.Component this, Ext.container.Container ownerCt)
Fires when a component is removed from an Ext.container.Container
Fires when a component is removed from an Ext.container.Container

Parameters

  • this : Ext.Component
  • ownerCt : Ext.container.Container
    Container which holds the component
 
Fires after the component markup is rendered.
Fires after the component markup is rendered.

Parameters

  • this : Ext.Component
 
resize( Ext.Component this, Number adjWidth, Number adjHeight)
Fires after the component is resized.
Fires after the component is resized.

Parameters

  • this : Ext.Component
  • adjWidth : Number
    The box-adjusted width that was set
  • adjHeight : Number
    The box-adjusted height that was set
 
Fires after the component is shown when calling the show method.
Fires after the component is shown when calling the show method.

Parameters

  • this : Ext.Component
 
startdrag( Ext.tree.TreePanel this, Ext.tree.TreeNode node, event e)
Fires when a node starts being dragged
Fires when a node starts being dragged

Parameters

  • this : Ext.tree.TreePanel
  • node : Ext.tree.TreeNode
  • e : event
    The raw browser event
 
textchange( Node node, String text, String oldText)
Fires when the text for a node is changed
Fires when the text for a node is changed

Parameters

  • node : Node
    The node
  • text : String
    The new text
  • oldText : String
    The old text