Hello,
I hope someone can explain this strange behavior about using Ext 3.4.0 and drag and drop in a tree or grid. It's not possible to drag a node or line, but when I'm using Ext 3.3.X everthing works fine.
The tree
Code:
var Tree = Ext.tree;
var treeDraft = new Tree.TreePanel({
title: 'Rollenvorlagen',
id: 'tree',
width: 340,
height: 260,
rootVisible: false,
animate:true,
useArrows: true,
enableDrag: true,
loader: new Tree.TreeLoader({
dataUrl:'rr_role_manage_ext.php5',
baseParams: { action: 'load_draft_roles' }
}),
});
var rootNode = new Tree.AsyncTreeNode({
text:'Rollenvorlagen',
draggable: false
});
treeDraft.setRootNode(rootNode);
rootNode.expand(true, false);
The jsonstore
Code:
[{"id":"120","text":"Administrator","leaf":true,"iconCls":"assumeIcon"},{"id":"162","text":"Sachbearbeiter","leaf":true,"iconCls":"assumeIcon"},{"id":"145","text":"Superuser","leaf":true,"iconCls":"assumeIcon"}]
nothing special, but it doesn't work 
THX
Thyrone