Re: [flexcoders] arraycollection and tree

2008-03-25 Thread Nayan Savla
Hi Luke, Just create a List in Java and return it. alternatively you can add it to a Value Object and then return it. below is example of my function, CategoriesVo is simple java class with three public variables. public List getCategoriesAll(){ List list = new Array

[flexcoders] arraycollection and tree

2008-03-24 Thread Luke Vanderfluit
Hi. I am using remoteobject to get stuff from a database (java/mysql). I want to represent the List, generated on the server side and sent to the client as an arraycollection, as a tree. Does anyone have examples of how to do this. I have been reading the online docs but Im making very slow pro