-
8 Oct 2010 2:52 AM #1
[OPEN-1317] Ext.tree.TreePanel - dragConfig{primaryButtonOnly:false} is ignored
[OPEN-1317] Ext.tree.TreePanel - dragConfig{primaryButtonOnly:false} is ignored
Modified "Reorder TreePanel" example code to reproduce the bug:
Ext 3.2.0PHP Code:Ext.onReady(function(){
// shorthand
var Tree = Ext.tree;
var tree = new Tree.TreePanel({
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: 'src'
},
dragConfig: {
primaryButtonOnly:false//doesn't work
},
listeners:{
load:function(){
this.dragZone.primaryButtonOnly=false;//works!
}
}
});
// render the tree
tree.render('tree-div');
tree.getRootNode().expand();
});
FF 3.6.10@WinXpLast edited by johnrembo; 8 Oct 2010 at 3:10 AM. Reason: error in title: Ext.TreePanel->Ext.tree.TreePanel
Thank you for reporting this bug. We will make it our priority to review this report.
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 -
[OPEN-1286] Ext.tree.TreePanel 'starttdrag' event fired with bogus event argument
By Tom23 in forum Ext 3.x: BugsReplies: 1Last Post: 21 Sep 2010, 8:39 AM -
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 -
Ext.tree.TreePanel set showLoadIndicator=false
By drkarkera in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 6 Feb 2008, 3:16 AM


Reply With Quote