Have you tried setting your @ProxyFor(BrowserDetailItem.class)? I haven't 
configured my proxies 

This is how I'd do it. 

*For the client side*
@ProxyFor(BrowserDetailItem.class)) 
public interface BrowserDetailItemProxy extends ValueProxy { 
   public String getName();  
   public Integer getId(); 
}

*For the server side, in any package on server side...*
public class BrowserDetailItem {
   public String getName() {
     return name;
   }
   public Integer getId() {
     return id;
   }
   //.. and some setters for server side use probabl...
}

Thats how I configure my ValueProxies. 

Hope that helps,
Brandon Donnelson
http://c.gwt-examples.com


-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/N2m1kS30xicJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to