Re: [flexcoders] drag and drop from Tree to List

2008-11-10 Thread anuj sharma
Hi I am not sure I get that but in general if you drag and drop from lets' say 'A' to B' ,I have used to drag and drop both ways from one list to another and I did is as follows A.dragMoveEnabled=true; A.dragEnabled=true; A.dropEnabled=true; B.dragMoveEnabled=true; B.dragEnabled=true;

RE: [flexcoders] drag and drop from Tree to List

2008-11-10 Thread Tracy Spratt
Because the dataProviders are presumably dissimilar, with the tree being hierarchical and the list being linear, you will not be able to depend on the built-in functionality, but will need to override the drag handler functions, and update the dataProviders yourself. Tracy

RE: [flexcoders] Drag and Drop from tree to List

2005-05-25 Thread Matt Chotin
Yep, dataForFormat(treeItems) I think is what you want. As for only having one item in the destination List, you could simply clear the list before adding in the treeItems in the dragDrop handler. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of