[flexcoders] Re: How to expand nodes down in trees

2008-02-12 Thread j_lentzz
Sorry Tracy, I was being stupid and looking at the wrong thing. That hint will do just what I need - Thank you. John --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > Do it the other way around. Find the nodes you want displayed, then use > xml.parent() to climb up

RE: [flexcoders] Re: How to expand nodes down in trees

2008-02-12 Thread Tracy Spratt
Sent: Tuesday, February 12, 2008 6:30 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to expand nodes down in trees Additional info, the result format is "object", not "e4x", so I don't seem to have the parent call to work with - it is null. I'm no

RE: [flexcoders] Re: How to expand nodes down in trees

2008-02-12 Thread Alex Harui
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of j_lentzz Sent: Tuesday, February 12, 2008 3:30 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to expand nodes down in trees Additional info, the result format is "object", not "e4x"

[flexcoders] Re: How to expand nodes down in trees

2008-02-12 Thread j_lentzz
Additional info, the result format is "object", not "e4x", so I don't seem to have the parent call to work with - it is null. I'm not sure what is required on the servlet side (java) to use a different format. I was given this to work with and didn't write the servlets. Thanks for any help, Joh

[flexcoders] Re: How to expand nodes down in trees

2008-02-12 Thread j_lentzz
How can you do that in one pass? I found the nodes by searching the descendants() result. I can find them by using the children call and traversing the tree, but then I have to back out to the top to open the nodes. This still means I'd have to traverse the tree for each item I find. The proble