Explicitly access GWT serialization logic

2011-12-07 Thread Marc Hacker
I have a class which implements Serializable and GWT knows how to send
objects over RPC.  But I want to GET such an object from a Servlet (in
order to allow browser caching).  Is there any way to explicitly
access GWT's underlying ability to serialize/unserialize my objects
(and the same on the server) even if I am sending the object using a
Servlet GET rather than RPC?

Thanks!

-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT Development plugin crashes FF and tooooo slow on Chrome

2010-10-17 Thread Marc Hacker
I have a largish GWT 2.0.4 application developed on eclipse Helios.

It runs fine compiled but the development mode is a disaster taking at
least 1-2 minutes for the first page load on Chrome (during which I
have to dismiss a couple of plug-in unresponsive messages) and
causing Windows to hang on FireFox. Sometimes it is actually quicker
to compile the whole thing into hosted JS. Interestingly it all worked
somewhat better with FF on Mac.

Any thoughts anyone?  I saw some old threads about this but none
seemed to have a conclusion.

Thanks

Marc

PS Am using a couple of libraries
com.allen_sauer.gwt.log
org.gwt.advanced.Grid
com.google.gwt.maps.GoogleMaps
com.reveregroup.gwt.imagepreloader.ImagePreloader

-- 
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 unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



SuggestBox MultiWordSuggestOracle autocomplete can't create suggestion/display pairs except for default

2010-06-15 Thread Marc Hacker
I have a GWT autocomplete new SuggestBox((new
MultiWordSuggestOracle());

For the default suggestions which appears before the user types any
prefix, there is a nice method

MultiWordSuggestOracle.setDefaultSuggestions(CollectionSuggestion
suggestionList)

so I can pass a nice list of a Suggestion's which are displayed as
html (for example I can create FaceBook style autosuggest with two
lines displayed in each item but with a simple replacement text by
simply implementing the Suggestion interface).

But for suggestions that appear once the user starts typing, the only
method seems to be

 add(String suggestion)

where I cannot control how it is displayed at all.

Any ideas how I can create a Suggestion with separate (html) display
and (simple text) replacement  values for the auto-complete as I can
for the default?

Thx

Marc

-- 
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 unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.