Re: RequestFactory does not preserve owned 1-to-many list order

2011-01-24 Thread QkQk
Hi David, Thanks for the reply. What i want is support for 'collection' of embedded classes. I am using gwt2.1.1 + appengine sdk 1.4.0. What i found is jdo implementation in appEngine seems not support this feature. I saw your sample code of 'listwidget' by JPA. it seems ok. Is it correct? On

Re: RequestFactory does not preserve owned 1-to-many list order

2011-01-21 Thread David Sowerby
Hi qkQk I don't think @Embedded is supported by RequestFactory. See http://code.google.com/webtoolkit/doc/trunk/DevGuideRequestFactory.html under Entity Relationships On Jan 20, 2:42 pm, QkQk michael@gmail.com wrote: Hi Thomas,  you are correct in list order. It's my mistake.  For the

Re: RequestFactory does not preserve owned 1-to-many list order

2011-01-21 Thread David Chandler
As of 2.1.1, RF now supports @Embedded types using ValueProxy on the client. Docs are lagging, will update shortly. /dmc On Fri, Jan 21, 2011 at 9:18 AM, David Sowerby david.sowe...@virgin.netwrote: Hi qkQk I don't think @Embedded is supported by RequestFactory. See

Re: RequestFactory does not preserve owned 1-to-many list order

2011-01-20 Thread QkQk
Hi Thomas, you are correct in list order. It's my mistake. For the second question, i have tried @Persistent(embeddedElement=true) on collection of embedded class,but does not work on appEngine sdk 1.4.0. Can you provide a working example? Is it possible to have embedded class or collection of

Re: RequestFactory does not preserve owned 1-to-many list order

2011-01-20 Thread Thomas Broyer
On Thursday, January 20, 2011 3:42:13 PM UTC+1, QkQk wrote: Hi Thomas, you are correct in list order. It's my mistake. For the second question, i have tried @Persistent(embeddedElement=true) on collection of embedded class,but does not work on appEngine sdk 1.4.0. Can you provide a

Re: RequestFactory does not preserve owned 1-to-many list order

2011-01-19 Thread Thomas Broyer
On Wednesday, January 19, 2011 4:42:35 AM UTC+1, QkQk wrote: Hi, I am using gwt2.1.1's requestfactory on owned 1-to-many relationship in jdo. I found the ordering of child list is missing as passed back to entityproxy. If you declared your property as a ListChildProxy (and not a

RequestFactory does not preserve owned 1-to-many list order

2011-01-18 Thread QkQk
Hi, I am using gwt2.1.1's requestfactory on owned 1-to-many relationship in jdo. I found the ordering of child list is missing as passed back to entityproxy. Another question is jdo seems not support collection of embedded class. Even RF enables embedded class in new release. This makes coding