-
25 Sep 2010 5:51 AM #1
TreePanel nodedragout even ?
TreePanel nodedragout even ?
Hi All,
I need to intercept when a node is dragged out when using the TreePanel...
The TreePanel has only the nodedragover and nodedrop, but an missing the third event.
Can someone point me to a way to do this ?
Many thanks!
-
25 Sep 2010 9:44 AM #2
davidTim24,
I think what you're looking for is:
Also see:PHP Code:
var tree = new Ext.tree.TreePanel({
// ... (your config)
dragConfig: {
beforeDragOut: function (target, evt, id) {
// your stuff
},
afterDragOut: function (target, evt, id) {
// your stuff
}
}
});
http://dev.sencha.com/deploy/dev/doc...e.TreeDragZone > Methods
Zogs.
-
27 Sep 2010 12:37 AM #3
-
1 Oct 2010 8:45 AM #4
?PHP Code:tree.on('startdrag', function (tree, node, evt) {
// stuff
});
Zogs.
Similar Threads
-
treePanel Plugin: Ext.ux.tree.TreePanel.CopyDropNode
By willf1976 in forum Ext 3.x: User Extensions and PluginsReplies: 14Last Post: 18 Jan 2011, 12:12 PM -
treePanel Plugin: Ext.ux.tree.TreePanel.AllowExpandEmptyBranch
By willf1976 in forum Ext 3.x: User Extensions and PluginsReplies: 0Last Post: 3 Sep 2009, 5:49 PM -
treePanel plugin: Ext.ux.tree.TreePanel.NodeManagement
By willf1976 in forum Ext 3.x: User Extensions and PluginsReplies: 0Last Post: 13 Aug 2009, 4:07 PM -
TreePanel using xtype: 'treepanel' icons will not display
By jbd3rd in forum Ext 2.x: Help & DiscussionReplies: 8Last Post: 27 May 2009, 10:24 PM -
add one treepanel to accordion,it's ok,but two treepanel ,it can't render correctly
By maodenny in forum Ext 2.x: Help & DiscussionReplies: 4Last Post: 30 Oct 2007, 12:58 AM


Reply With Quote