Re: GWT and HTML5 Client-side Storage

2011-04-05 Thread Eric Andresen
I agree, this would be nice functionality to have. For the time being, you can hack it in using JSNI, but it may not work on all browsers: public static native String getFromStorage(String keyName) /*-{ return localStorage.getItem(keyName); }-*/; public static native

Re: GWT and HTML5 Client-side Storage

2011-04-05 Thread Thomas Broyer
On Tuesday, April 5, 2011 4:24:02 PM UTC+2, Eric Andresen wrote: But it would be nice for native support, especially to avoid having to do your own serialization/deserialization. Support is coming into GWT 2.3:

Re: GWT and HTML5 Client-side Storage

2010-12-23 Thread monkeyboy
Is there any plan to support client-side storage in GWT directly (I mean without third party libraries)? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To

GWT and HTML5 Client-side Storage

2010-03-23 Thread Giancarlo
Hello! Has anybody a good idea of how to store Java objects into HTML5 standard Client-side Storage (Session Storage,Local Storage) Regards Giancarlo -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: GWT and HTML5 Client-side Storage

2010-03-23 Thread g p
Check this project out: http://code.google.com/p/gwt-mobile-webkit/wiki/StorageApi http://code.google.com/p/gwt-mobile-webkit/wiki/StorageApiCheers! On 22 March 2010 14:25, Giancarlo giancarlo.ang...@gmail.com wrote: Hello! Has anybody a good idea of how to store Java objects into HTML5