Java 8 Date/Time API Support (JSR 310)

2016-12-23 Thread Bruce Alspaugh
Does GWT support the Java 8 date/time classes in the java.time package?  If 
not, can the JSR 310 backport be used:

http://www.threeten.org/threetenbp/

The new date/time classes work a lot better for me than the legacy 
date/calendar classes, and it would be helpful if date picker widgets could 
use them.

Bruce

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


HTTP/2 Server Push

2016-12-23 Thread Evan Ruff
Hello,

I've been away from GWT for a bit and am looking into creating an embeeded 
jCEF project using a Jetty Backend and a Chromium Browser. I was wondering 
if there were any libraries out there to help integrate the GWT client side 
with the HTTP/2 Server Push features of Jetty 9 (and later Servlet 4)?

I'd like to use something like RESTEasy with GWTRestly to do the actual 
data mapping, but was hoping for some information about how other people 
had approached the problem.

Thanks for any insight!

E 

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: gxt combobox not scroll vertical

2016-12-23 Thread Mike Warne
Have you asked this on the gxt forums?
Sorry not familiar with gxt

Mike

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT and async requests (startAsync)

2016-12-23 Thread Robert J. Carr
Thanks Thomas. I was hoping it'd be easier and I was just missing
something. Moving this call out of rpc is probably the best solution.
Thanks again for the guidance!

Since servlets 3 had been out for a long time now it'd be a great idea to
have the developers write this feature into RemoteServiceServlet.

On Friday, December 23, 2016, Thomas Broyer  wrote:

> GWT RPC has been thought of as blocking on the server side. Making it
> async would require changes to the RemoteServiceServlet: most likely the
> method would be async just like on the client side with the implementation
> calling the callbacks onSuccess or onFailure.
>
> Your best bet here would be to write a RemoteServiceAsyncServlet by
> copying from RemoteServiceServlet, hoping for all underlying APIs to be
> public.
> Either that or move off of RPC for that call (future proof)
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "GWT Users" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/google-web-toolkit/-eITQalAc9k/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> google-web-toolkit+unsubscr...@googlegroups.com .
> To post to this group, send email to google-web-toolkit@googlegroups.com
> .
> Visit this group at https://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


GWT and async requests (startAsync)

2016-12-23 Thread Thomas Broyer
GWT RPC has been thought of as blocking on the server side. Making it async 
would require changes to the RemoteServiceServlet: most likely the method would 
be async just like on the client side with the implementation calling the 
callbacks onSuccess or onFailure.

Your best bet here would be to write a RemoteServiceAsyncServlet by copying 
from RemoteServiceServlet, hoping for all underlying APIs to be public.
Either that or move off of RPC for that call (future proof)

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.