[flexcoders] Re: Using an ArrayCollection to populate a Tree component

2010-04-07 Thread cuttenv
near (non-hierarchical) structure but I want to use one of the > > > properties (the "group" property) for the parent nodes in a Tree > > > component. > > > > > > Should I be looking at creating a custom data descriptor or a custom > > >

Re: [flexcoders] Re: Using an ArrayCollection to populate a Tree component

2010-04-07 Thread Alex Harui
bjects > > > have a linear (non-hierarchical) structure but I want to use one of the > > > properties (the "group" property) for the parent nodes in a Tree > > > component. > > > > > > Should I be looking at creating a custom

RE: [flexcoders] Re: Using an ArrayCollection to populate a Tree component

2010-04-07 Thread Battershall, Jeff
. -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of md_ars Sent: Wednesday, April 07, 2010 12:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Using an ArrayCollection to populate a Tree component I ran in to the similar

[flexcoders] Re: Using an ArrayCollection to populate a Tree component

2010-04-07 Thread md_ars
> > > > > > > > > > > On 4/6/10 8:42 AM, "Phil Boissiere" wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > Thanks, Oleg, Jeff. > > >

[flexcoders] Re: Using an ArrayCollection to populate a Tree component

2010-04-07 Thread Jeff
a linear (non-hierarchical) structure but I want to use one of the > > > properties (the "group" property) for the parent nodes in a Tree > > > component. > > > > > > Should I be looking at creating a custom data descriptor or a custom > > > object that

Re: [flexcoders] Re: Using an ArrayCollection to populate a Tree component

2010-04-07 Thread Oleg Sivokon
Why make your own collection and not data descriptor: Well, this is questionable, and the question is exactly how much time are you going to spend on that and how critical this place is for you. If you can spend much time, or, as much time as you want, I'd say - make a tree control yourself, and do

Re: [flexcoders] Re: Using an ArrayCollection to populate a Tree component

2010-04-06 Thread Alex Harui
a > > custom Tree component?). > > > > I just want to make sure I'm doing the right thing, since either approach > > seems to involve quite a bit of ActionScript. > > > > Thanks again. > > > > > > --- On Tue, 4/6/10, Jeff wrote: > > > >

[flexcoders] Re: Using an ArrayCollection to populate a Tree component

2010-04-06 Thread Jeff
ect > > that implements the ICollectionView interface (does that mean create a > > custom Tree component?). > > > > I just want to make sure I'm doing the right thing, since either approach > > seems to involve quite a bit of ActionScript. > > > >

[flexcoders] Re: Using an ArrayCollection to populate a Tree component

2010-04-06 Thread cuttenv
rface (does that mean create a custom > Tree component?). > > I just want to make sure I'm doing the right thing, since either approach > seems to involve quite a bit of ActionScript. > > Thanks again. > > > --- On Tue, 4/6/10, Jeff wrote: > > From: Jeff

Re: [flexcoders] Re: Using an ArrayCollection to populate a Tree component

2010-04-06 Thread Alex Harui
face (does that mean create a custom Tree component?). I just want to make sure I'm doing the right thing, since either approach seems to involve quite a bit of ActionScript. Thanks again. --- On Tue, 4/6/10, Jeff wrote: From: Jeff Subject: [flexcoders] Re: Using an ArrayCollection to pop

Re: [flexcoders] Re: Using an ArrayCollection to populate a Tree component

2010-04-06 Thread Phil Boissiere
quite a bit of ActionScript. Thanks again. --- On Tue, 4/6/10, Jeff wrote: From: Jeff Subject: [flexcoders] Re: Using an ArrayCollection to populate a Tree component To: flexcoders@yahoogroups.com Date: Tuesday, April 6, 2010, 7:18 AM   You can also

[flexcoders] Re: Using an ArrayCollection to populate a Tree component

2010-04-06 Thread Jeff
You can also create a custom data descriptor and set the dataDescriptor property of the tree component. See http://livedocs.adobe.com/flex/3/html/help.html?content=about_dataproviders_6.html --- In flexcoders@yahoogroups.com, Oleg Sivokon wrote: > > The best way would be to implement your ow