RE: [flexcoders] Re: Drag and Drop question

2008-05-02 Thread Alex Harui
: Thursday, May 01, 2008 9:48 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Drag and Drop question So here is a example to what i'm talking about. someone can tell me why: 1 - First test on this example if i drag an item from a branch(NOT the WHOLE BRANCH) from tree1 and drop

RE: [flexcoders] Re: Drag and Drop question

2008-05-02 Thread Tracy Spratt
To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Drag and Drop question If you don't define a dataprovider, an ArrayCollection will be used. In your case you want an XMLListCollection so you should initialize the second tree to have one. From

Re: [flexcoders] Re: Drag and Drop question

2008-05-01 Thread Josh McDonald
It makes sense to me that you would. Drag and drop is a visual operation, not a data operation, and in no way does it always mean that you're removing something from the first list. For an example think of the components palette in Builder. There might be some way to enable the sort of automatic

Re: [flexcoders] Re: Drag and Drop question

2008-05-01 Thread Josh McDonald
%40yahoogroups.com [mailto:flexcoders@yahoogroups.com flexcoders%40yahoogroups.com] *On Behalf Of *Josh McDonald *Sent:* Thursday, May 01, 2008 5:05 PM *To:* flexcoders@yahoogroups.com flexcoders%40yahoogroups.com *Subject:* Re: [flexcoders] Drag and Drop question How do you

RE: [flexcoders] Re: Drag and Drop question

2008-05-01 Thread Alex Harui
%40yahoogroups.com *Subject:* Re: [flexcoders] Drag and Drop question How do you mark a drag/drop operation as having a certain type (ie Move)? -J On Fri, May 2, 2008 at 5:32 AM, Tracy Spratt [EMAIL PROTECTED] wrote: Actually I am pretty sure the list-based component's

RE: [flexcoders] Re: Drag and Drop question

2008-05-01 Thread Alex Harui
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Drag and Drop question Yes it does... I found a solution. I used callLater and apparently it works now. I couldn't understand callLater before but it is a function that it's saving my life a lot lately! :P Now the question i have is there is anyway