I have a shared DTO objects that I want to edit on the client and then later persist on the server. Now, if I try to make my DTO object extend ListGridRecord, I get the following when trying to instantiate DTO object on server:
com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract com.xxx.config.model.Config com.xxx.j2ee.config.client.ConfigService.getConfig(java.lang.String)' threw an unexpected exception: java.lang.UnsatisfiedLinkError: com.smartgwt.client.util.LogUtil.setJSNIErrorHandler()V
Is it possible at all to use the same java class in a grid as a ListGridRecord and on the server?
com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract com.xxx.config.model.Config com.xxx.j2ee.config.client.ConfigService.getConfig(java.lang.String)' threw an unexpected exception: java.lang.UnsatisfiedLinkError: com.smartgwt.client.util.LogUtil.setJSNIErrorHandler()V
Is it possible at all to use the same java class in a grid as a ListGridRecord and on the server?
Comment