Transfer DataTable object from server to client

2011-04-12 Thread Phalgun Guduthur
Can someone tell me which is best pratice to transfer DataTable (data for visualization) with GWT RPC. Cause DataTable is not serializable, and I have a lot of data. I want to use GWT RPC cause I use Java on the server side. I know that just sending the raw data to the client and formatting there

Re: Transfer DataTable object from server to client

2011-04-12 Thread Alexandre Ardhuin
Have you look at ValueProxy with RequestFactory ? http://code.google.com/webtoolkit/doc/latest/DevGuideRequestFactory.html#valueProxies Your proxyfied object doesn't need to implement Serializable. Alexandre 2011/4/10 Phalgun Guduthur phalgun.gudut...@gmail.com Can someone tell me which is