what date libraries are you using?

2013-08-22 Thread roegerle
Like many I'm a fan of Joda-Time. I'm curious what date libraries are popular, if any, for GWT client side. Goda looks dead. GWT-Time looks as it might be of use. Maybe pure javascript date packages are the way to go? Whats been successful in your projects? -- You received this message

Re: ImageResource question

2013-08-22 Thread Thomas Broyer
Beware when implementing com.google.gwt.resources interfaces (whose implementations are expected to be generated) that they might change and break your code. GWT 2.6 will introduce a new isStandalone() method for instance. Also, BTW, you should probably use

Re: what date libraries are you using?

2013-08-22 Thread Jens
Each day I pray that Java 8 won't get delayed any further and that GWT will include JSR 310 once Java 8 is released. Currently I just avoid date manipulation code in shared classes. On client I use the Date class with its deprecated methods behind a date manipulation utility class and on the

gwt-google-apis library

2013-08-22 Thread Ümit Seren
This question should be posted on the gwt-google-apis forum but I am not sure if anyone actually checks it (last post is from last year). I have been using the gwt-google-apis library (specifically gwt-visualisations) extensively. However there hasn't been any update to the library for a

Build a DataGrid with 2 proxies

2013-08-22 Thread aurelie . virgile
Hi guys, Is it possible to mix up datas coming from multiples proxies on to a DataGrid or do i have to create a new proxy containing both ? table = new DataGridAProxy(numRows, GWT.TableResources create(TableResources.class)); initWidget(GWT.Binder

Roadmap

2013-08-22 Thread Marcos
Hi, Is there any roadmap / plan to the next versions of GWT ? Thanks Mussi -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Roadmap

2013-08-22 Thread Thomas Broyer
https://developers.google.com/events/io/sessions/327833110 ? On Thursday, August 22, 2013 6:17:53 PM UTC+2, Marcos wrote: Hi, Is there any roadmap / plan to the next versions of GWT ? Thanks Mussi -- You received this message because you are subscribed to the Google Groups Google Web

Re: Build a DataGrid with 2 proxies

2013-08-22 Thread Jens
BProxy would need to extend AProxy. If you don't want that you have to use a third class/proxy that contains AProxy and BProxy. In both cases your columns must then figure out what data to render (using instanceof or null checks depending on your solution). -- J. -- You received this message

Re: GXT Grid row is not selectable

2013-08-22 Thread SaiP
I've figured it, some how i had to create(local variable) the grid local to the method and added to the content panel. Then this local grid, I assigned it to the global grid. fxed it. On Wednesday, August 21, 2013 12:50:33 PM UTC-5, SaiP wrote: Hello, I'm new to GWT. I've a grid which has

Re: Appearance of extra scroll bar in GWT Datagrid

2013-08-22 Thread Ryan
I've seen the exact same issue starting around Chrome 22-22 on OSX. I've been unable to track down which element(s) are causing it but having to look at bugs me to no end. If you find out how to address it please report back. Cheers, Ryan -- You received this message because you are

get scroll event from iframe

2013-08-22 Thread bhomass
there seems to be no way in GWT to get the iframe scrollEvent. I tried (com.google.gwt.dom.client.IFrameElement)frame.addDomHandler(newScrollHandler() { @Override public void onScroll(ScrollEvent event) { // do something } }, ScrollEvent.getType()); but the event does not fire

Access POST parameters via servlet?

2013-08-22 Thread John
I'm creating a GWT application that, when accessed, will be passed POST parameters (user id, etc.). All the reading I've done so far has led me to believe that I should create a servlet (I'm using tomcat) that will handle the POST parameters and then forward to my GWT application. I've gotten

Re: Access POST parameters via servlet?

2013-08-22 Thread Matthew Dempsky
On Thu, Aug 22, 2013 at 11:23 AM, John mallo...@miamioh.edu wrote: I'm creating a GWT application that, when accessed, will be passed POST parameters (user id, etc.). What does this mean? Your GWT application runs on the client side. Are you saying the host page is sent to the browser in

Re: [gwt-contrib] Removing GWT sample apps from gwt.google.com/samples/?

2013-08-22 Thread John A. Tamplin
On Thu, Aug 22, 2013 at 5:30 PM, Matthew Dempsky mdemp...@google.comwrote: Currently, gwt.google.com/samples/ hosts a bunch of sample apps linked from http://www.gwtproject.org/examples.html. However, it's kind of a pain for us to continue maintaining the custom server that hosts these apps,

Re: [gwt-contrib] Google team meeting notes for August 7 (and earlier)

2013-08-22 Thread Stephen Haberman
Hi John, Thanks for the great responses. do you still have to retranslate the *entire* AST to Javascript source (and is the resulting process still fast if you have to do so)? Yeah, good question...seems like in an ideal world you could cache the JS string for each compilation unit and then