Hi
I have a proxy object A which contains a list of proxies (B proxies)

when fetch from database I am using 

requestContext.findWithId(longId).with("b_list")

this work as expected and I am getting the list  of B proxies (. can 
execute size() , and get(index) on the list )

the issue is when I am doing 

bproxy = blist.get(0) --> this return a B proxy instance the first one on 
the list

then B proxy also has getters for a C proxy object .

so when I execute bproxy.getC() -- I am getting null value.


What should I put in the with() method in order for request factory will 
bring me a list of objects that contains other objects -- meaning that the 
type of the list is not String or primitive , so the list type it self as 
getters ?

Thanks
Nir

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to