On Wed, Sep 15, 2010 at 4:45 PM, Patrick Julien <[email protected]> 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.<T>get(property, String.class)); > } > > in PropertyColumn, I believe it should be: > > public String getValue(R object) { > ProxyImpl proxyImpl = (ProxyImpl) object; > return renderer.render(proxyImpl.<T>get(property));
Except that doesn't work because the single argument version needs a Property<V> instead of a String. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors
