Ok thanks, I ll try it
--- In [email protected], "Dustin Mercer" <[EMAIL PROTECTED]> wrote: > > Yeah, this is a fun one. I have done this, but it's not as elegant as I was hoping, but it works. What I had to do was create a TreeNode class. Looks like this: > > > > Public class TreeNode { > > > > Private String label; > > Private String data; > > Private ArrayList children; > > > > Getters and setters.... > > } > > > > The key here is the children property. The property to hold the nodes must be named children or the tree won't have any childNodes. There is probably better ways to do this, I.E. implementing the ITreeDataProvider interface on the AS class, but I couldn't get it to work properly, and haven't had a chance to revisit it. Does your tree need to load dynamically (I.E. populate the children with another call to the database on the nodeOpen event) or will you be loading the whole tree at once? If you load dynamically, you will need to make sure you initialize the children property or that node won't be a folder. > > > > Dustin Mercer > > > > ________________________________ > > From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of frederic_dematos > Sent: Wednesday, October 04, 2006 7:15 AM > To: [email protected] > Subject: [flexcoders] Fill a Tree From a JAVA Class > > > > Hi, > > I want to fill an mx:Tree from a Java class talking with webDav. > > I am calling my Java class using the Remoting Object. > > On the actionScript I want to call the method getFiles of my Java > class and give the result to the mx.Tree. The problem is I don't know > which kind of data and which king of structure to pass to the data > provider of the tree. > > If somebody had already meet that kind of problem , thanks for your help. > > Frédéric DE MATOS > -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/flexcoders/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

