Basic Drag & Drop
- Any Element or DOM node can be Drag & Drop Enabled
- All Drag & Drop is managed by DragDropMgr to remain consistent
- Groups allow for multiple separate Drag & Drop components
new Ext.dd.DD('box1');
var el = Ext.get('box2');
el.initDDProxy();
Box 1
Box 2