Re: [gwt-contrib] [google-web-toolkit] r8780 committed - Fixes https://jira.springsource.org/browse/ROO-1213 - Hide Property fr...

2010-09-16 Thread Patrick Julien
2010/9/15 Miguel Méndez mmen...@google.com: Thanks for spotting that Patrick.  I'll get the code updated. no thank you -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] [google-web-toolkit] r8780 committed - Fixes https://jira.springsource.org/browse/ROO-1213 - Hide Property fr...

2010-09-15 Thread Patrick Julien
On Wed, Sep 15, 2010 at 4:45 PM, Patrick Julien pjul...@gmail.com wrote: Oh, and forgot to mention, that the root problem is of course this: public String getValue(R object) {    ProxyImpl proxyImpl = (ProxyImpl) object;    return renderer.render(proxyImpl.Tget(property, String.class));  }

Re: [gwt-contrib] [google-web-toolkit] r8780 committed - Fixes https://jira.springsource.org/browse/ROO-1213 - Hide Property fr...

2010-09-15 Thread Pascal Patry
On Wednesday, September 15, 2010 16:16:06 Patrick Julien wrote: public String getValue(R object) { -return renderer.render(object.get(property)); +ProxyImpl proxyImpl = (ProxyImpl) object; +return renderer.render(proxyImpl.Tget(property, String.class)); } This blows up on

Re: [gwt-contrib] [google-web-toolkit] r8780 committed - Fixes https://jira.springsource.org/browse/ROO-1213 - Hide Property fr...

2010-09-15 Thread Patrick Julien
using this as tmp work around for now: package com...workarounds; import com.google.gwt.app.place.PropertyColumn; import com.google.gwt.requestfactory.client.impl.ProxyImpl; import com.google.gwt.requestfactory.shared.EntityProxy; import com.google.gwt.text.shared.Renderer; public final class

Re: [gwt-contrib] [google-web-toolkit] r8780 committed - Fixes https://jira.springsource.org/browse/ROO-1213 - Hide Property fr...

2010-09-15 Thread Miguel Méndez
Thanks for spotting that Patrick. I'll get the code updated. On Wed, Sep 15, 2010 at 5:54 PM, Patrick Julien pjul...@gmail.com wrote: using this as tmp work around for now: package com...workarounds; import com.google.gwt.app.place.PropertyColumn; import