Re: How do you guys solve this problem?

2011-07-01 Thread Gal Dolber
Thanks! makes sense, I think my problem is that I thought that Proxy's could be generated 100%, but it seems we still need to maintain them by-hand in some cases On Thu, Jun 30, 2011 at 9:32 PM, David Chandler drfibona...@google.comwrote: Magno is correct. You can create multiple proxy

How do you guys solve this problem?

2011-06-30 Thread Gal Dolber
Imagine an example: let say I want to show in the client the following table of Sales: Id | Client | Product | Number - 1| John Doe(2) | iMac 27'(23)| 1 2| Chris More(3)

Re: How do you guys solve this problem?

2011-06-30 Thread Magno Machado
i think you could create another proxy for Client which is just id and name But I had a similar need some time ago and I found it better to use gwt-rpc for that specific case, although the app uses mainly requestfactory On Thu, Jun 30, 2011 at 8:38 PM, Gal Dolber gal.dol...@gmail.com wrote:

Re: How do you guys solve this problem?

2011-06-30 Thread David Chandler
Magno is correct. You can create multiple proxy representations of an entity, so could have ClientProxy with accessor methods for all properties and LightweightClientProxy with only getId() and getStringRepresentation(). /dmc On Thu, Jun 30, 2011 at 8:10 PM, Magno Machado magn...@gmail.com