Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread Ido
Thanks!! On Wednesday, June 27, 2012 11:39:07 PM UTC+3, Rajeev Dayal wrote: Hey all, We're excited to announce the GWT 2.5 Release Candidate! Read about it on the GWT Blog http://googlewebtoolkit.blogspot.com/2012/06/gwt-2.html, and download it here

Re: HandlerManager for Cells

2012-06-28 Thread Jens
In your Cell constructor you have to call super(focus) to let the cell sink focus events and then overwrite onBrowserEvent() to catch them. Alternatively you could use GWT 2.5 which introduces UiBinder for Cells along with event handler support (see:

Re: GWT Plugin for Eclipse 3.8 (Juno 4.2)

2012-06-28 Thread Andrei Bulanau
put a star http://code.google.com/p/google-plugin-for-eclipse/issues/detail?id=71 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/HT2BebNbApUJ.

Re: eclipse 4.2 juno

2012-06-28 Thread Andrei Bulanau
put a star http://code.google.com/p/google-plugin-for-eclipse/issues/detail?id=71 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/7MGsmb6Ml_wJ.

Re: GWT Plugin for Eclipse 3.8 (Juno 4.2)

2012-06-28 Thread Albert Attard
Cheers. Just did Albert -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/qqp3PXZfO70J. To post to this group, send email to

Re: HandlerManager for Cells

2012-06-28 Thread Mohit
What I want to do is fire an event from a cell so that some other widget can listen to it? For example, I have a text input cell in a table to which I want to attach a focus handler. Like: column.getCell().addFocusHandler(new SomeFocusHandler(){ public void onFocus(SomeFocusEvent sfe){

Custom compiler options with the gwt maven plugin

2012-06-28 Thread P.G.Taboada
Hi, with the release GWT 2.5.0 RC1 release, I ran into the issue that I cannot add a custom gwt compiler parameter in my pom. At least I cannot find any documentation showing how to do it. I would like to turn on the experimental closure compiler. Am I missing something? -- You received

Re: Custom compiler options with the gwt maven plugin

2012-06-28 Thread Thomas Broyer
On Thursday, June 28, 2012 11:40:07 AM UTC+2, P.G.Taboada wrote: Hi, with the release GWT 2.5.0 RC1 release, I ran into the issue that I cannot add a custom gwt compiler parameter in my pom. At least I cannot find any documentation showing how to do it. I would like to turn on the

Re: HandlerManager for Cells

2012-06-28 Thread Jens
You could try table.addCellPreviewHandler(). Basically the handler is called before a cell receives the event in its Cell.onBrowserEvent() method. The PreviewEvent gives you access to the event type, column index and the row value. So you could check for the focus event and the column and then

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread Hiroshi YAMAMOTO
Congrat! Elemental library sounds unnecessarily cool. But how do you think there're 4 Element classes/interfaces in the same toolkit :P. I'm very excited. This is very important library for everyone of us. I see Dart style source code generators in there. interesting. And improved code

Re: Custom compiler options with the gwt maven plugin

2012-06-28 Thread P.G.Taboada
Thank you, switched to snapshot. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/a1ZoEioe_xIJ. To post to this group, send email to

Re: GWT Plugin for Eclipse 3.8 (Juno 4.2)

2012-06-28 Thread Albert Attard
There is an update: http://dl.google.com/eclipse/plugin/4.2 I've used the above update link and managed to install the GWT Plugin on JUNO 4.2 with no problems. I've only installed the GWT components. This update was announced at this post:

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread Marius Grama
Hi, Can you please anounce when will there be the eclipse plugin containing the GWT 2.5.0 RC1 SDK available ? Thanks for the new release. On Wednesday, June 27, 2012 10:39:07 PM UTC+2, Rajeev Dayal wrote: Hey all, We're excited to announce the GWT 2.5 Release Candidate! Read about it on

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread Albert Attard
Thanks for sharing this and well done. What version of Java does this work with? Does it support Java 7 code? Albert On Wednesday, June 27, 2012 10:39:07 PM UTC+2, Rajeev Dayal wrote: Hey all, We're excited to announce the GWT 2.5 Release Candidate! Read about it on the GWT Blog

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread Cristian Rinaldi
The plugin is here http://dl.google.com/eclipse/plugin/4.2 it is not yet on page. Thanks GWT Team! *AUS. Cristian Rinaldi Co-founder* Mobile: (+54) 9 (342) 5 238 083 Email: cristian.rina...@logikas.com Skype: csrinaldi Site: www.logikas.com Google Plus https://plus.google.com/u/0/

superdevmode when working with multiple projects

2012-06-28 Thread Marius Grama
Hi, I've downloaded gwt 2.5.0 RC1 SDK and successfully worked with it for testing super devmode on a GWT helloworld application. Then i've tried to test super devmode on a more complex project structure: - my.gwt.web.module.standard - common.gwt.web.module - another.common.gwt.web.module When I

Re: superdevmode when working with multiple projects

2012-06-28 Thread Thomas Broyer
On Thursday, June 28, 2012 5:47:58 PM UTC+2, Marius Grama wrote: Hi, I've downloaded gwt 2.5.0 RC1 SDK and successfully worked with it for testing super devmode on a GWT helloworld application. Then i've tried to test super devmode on a more complex project structure: -

Re: superdevmode when working with multiple projects

2012-06-28 Thread Marius Grama
Thanks Thomas for the quick answer. The problem was on my side. I've done the helloworld application through a GWT wizard and there the source folder was src/. On the other hand the bigger application I'm working on uses a Maven source layout, src/main/java. I've modified this on the run

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread Thomas Broyer
On Thursday, June 28, 2012 4:56:28 PM UTC+2, Albert Attard wrote: Thanks for sharing this and well done. What version of Java does this work with? Does it support Java 7 code? No, Java 6 only. (you should be able to use a JDK 7, but you can only use Java 6 the language: -source 1.6

Re: superdevmode when working with multiple projects

2012-06-28 Thread Thomas Broyer
On Thursday, June 28, 2012 6:32:40 PM UTC+2, Marius Grama wrote: Thanks Thomas for the quick answer. The problem was on my side. I've done the helloworld application through a GWT wizard and there the source folder was src/. On the other hand the bigger application I'm working on uses a

Re: superdevmode when working with multiple projects

2012-06-28 Thread Dennis Haupt
loading sources from the classpath works. for me, at least. Am 28.06.2012 18:17, schrieb Thomas Broyer: On Thursday, June 28, 2012 5:47:58 PM UTC+2, Marius Grama wrote: Hi, I've downloaded gwt 2.5.0 RC1 SDK and successfully worked with it for testing super devmode on a GWT

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread Stefano Ciccarelli
Our project compiles in 9 minutes with GWT 2.4 and 17 minutes with GWT 2.5.rc1. I think this is not acceptable to save only a 10% in Javascript size. -- Inviato con Sparrow (http://www.sparrowmailapp.com/?sig) Il giorno mercoledì 27 giugno 2012, alle ore 22:39, Rajeev Dayal ha scritto:

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread Juan Pablo Gardella
And if use draft mode is more slow too? 2012/6/28 Stefano Ciccarelli sciccare...@gmail.com Our project compiles in 9 minutes with GWT 2.4 and 17 minutes with GWT 2.5.rc1. I think this is not acceptable to save only a 10% in Javascript size. -- Inviato con Sparrow

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread Dennis Haupt
same here. enabling the closure compiler almost doubles the compilation time. but i don't care, i only have to run the compiler in this mode before a release. the code server takes about 10 seconds to handle a change in the same app. Am 28.06.2012 18:47, schrieb Stefano Ciccarelli: Our project

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread kht
congratulations to the whole gwt team! great work! just compiled all my projects with it... all works fine! thanks for all your efforts! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Issues with Gwt Bootstrap on IE 8

2012-06-28 Thread Dhamu
Hi everyone, I have integrated GWT bootstrap with my GWT Application. Some CSS of GWT Bootstrap are not rendered in IE8, but it looks fine in Firefox, Google Chrome, Safari. I want to add specifically anything for Internet Explorer in GWT application? And another thing, I have edited GWT

Re: Google Eclipse Plugin deletes gwt-servlet.jar when running?

2012-06-28 Thread ZeC
Hi, I am running into similar issue. What helped you in the end? I use m2eclipse+gwt+gae. When I do maven clean install it creates my output directory and running mvn gwt:run is OK. When I go into Eclipse and run project as Google Web Application, plugin deletes WEB-INF/lib directory from the

Re: GWT Cell List Issue

2012-06-28 Thread Michael Cohen
Same problem here - when running under IE. Did you ever find a solution or workaround? On Monday, February 13, 2012 6:35:10 AM UTC-5, Santhosh Kumar wrote: Hi, We have CellList on our application within main panel.When we use shift key to select multiple values in Cell List,the entire

Shopping Cart OpenSource using GWT

2012-06-28 Thread Supper GWTer
Does anyone know any shopping cart opensource using GWT? Serverside may be in Java or .NET. Regards, -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread saida dhanavath
WOW! great Congrats! GWT Team. Regards, Saida. On Thu, Jun 28, 2012 at 10:51 PM, Dennis Haupt d.haup...@googlemail.comwrote: same here. enabling the closure compiler almost doubles the compilation time. but i don't care, i only have to run the compiler in this mode before a release. the

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread JoseM
Can we use this with the existing gwt maven plugin or do we need to use a newer version/build or own? http://mojo.codehaus.org/gwt-maven-plugin/ On Thursday, June 28, 2012 12:34:58 PM UTC-4, Thomas Broyer wrote: On Thursday, June 28, 2012 4:56:28 PM UTC+2, Albert Attard wrote: Thanks for

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread Stefano Ciccarelli
My times are with closure disabled!!! And code server takes never less than two minutes to compile a single permutation of the same app. -- Sent with Sparrow (http://www.sparrowmailapp.com/?sig) Il giorno giovedì 28 giugno 2012, alle ore 19:21, Dennis Haupt ha scritto: same here. enabling

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread Dennis Haupt
since it's a java app - can you profile it? there should be a pretty obvious reason, may be massive garbage collection? Am 28.06.2012 19:40, schrieb Stefano Ciccarelli: My times are with closure disabled!!! And code server takes never less than two minutes to compile a single permutation of the

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread Barop, Johannes
You can use the 2.4-plugin. You have to use the new version if you want to use the new features/compiler flags. J. 2012/6/28 JoseM jose.a.marti...@gmail.com: Can we use this with the existing gwt maven plugin or do we need to use a newer version/build or own?

Re: GWT Cell List Issue

2012-06-28 Thread Michael Cohen
So I figured out a workaround today. Add this to your code to workaround this problem in IE: private native static void disableDefaultSelection(Element e)/*-{ e.ondrag = function () { return false; }; e.onselectstart = function () { return false; };

Re: Issues with Gwt Bootstrap on IE 8

2012-06-28 Thread Carlos Alexandro Becker
Hi Damu, Please, try to add below code to your module.html head tag: !-- before your module(*.nocache.js) loading -- !--[if lt IE 9] script src=http://html5shim.googlecode.com/svn/trunk/html5.js;/script ![endif]--

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread Thad
Full ARIA coverage. Hurrah! On Wednesday, June 27, 2012 4:39:07 PM UTC-4, Rajeev Dayal wrote: Hey all, We're excited to announce the GWT 2.5 Release Candidate! Read about it on the GWT Blog http://googlewebtoolkit.blogspot.com/2012/06/gwt-2.html, and download it here

GWT Designer -- GC overhead limit exceeded

2012-06-28 Thread Thad
I part of my job I dislike the most is laying out HTML. As such I have a love-hate relationship with GWT Designer. While it makes some things easier, in many more ways it's just plain maddening. Currently my chief gripe is how GWT Designer keeps crashing Eclipse. Even when I'm *not* getting

Re: get the country and city from latitude and longitude

2012-06-28 Thread Bakul
There are two options 1. You can use google geocoding service either JSON or XML, pass latitude and longitude as input and parse the response. For example following URL will give you the json result of Google's HQ in Mountain View CA.

Re: Loading third-party Javascript with a script loader

2012-06-28 Thread Bakul
Hi, You can add javascript asynchronously whenever you want and invoke any function from that js using JSNI. Please refer following https://developers.google.com/web-toolkit/articles/using_gwt_for_json_mashups You will probably need something like following to add js in the page and then

Re: Loading third-party Javascript with a script loader

2012-06-28 Thread JoseM
You can also try using ScriptInjector, and make sure you set the Window to the one you want ($wnd). They provide a callback to let you know when it is loaded: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/core/client/ScriptInjector.html Here is one way I have used

google maps

2012-06-28 Thread Kyle Anderson
I have developed an application in GWT which allows users to visualize a large graph. The application has a few requirements: 1.) Display about 5000 nodes edges 2.) add or delete nodes/edges from the graph 3.) click nodes/edges on the graph execute a custom callback function 4.) Provide a

Re: GWT Widgets Do Not Resize In Relation To Browser

2012-06-28 Thread KGD
Thank you for the response. When you reference resizeLayoutPanel are you using that as a generic for the specific items such as DockLayoutPanel, SplitLayoutPanel, TabLayoutPanel, etc.? Sorry if the question seems stupid, I'm used to Swing and AWT but I'm just working through GWT. I'm

Re: GWT Widgets Do Not Resize In Relation To Browser

2012-06-28 Thread KGD
Working through the RequiresResize and ProvidesResize interfaces On Thursday, June 28, 2012 8:30:34 PM UTC-4, KGD wrote: Thank you for the response. When you reference resizeLayoutPanel are you using that as a generic for the specific items such as DockLayoutPanel, SplitLayoutPanel,

Re: google maps

2012-06-28 Thread Joseph Lust
Provide a blank overlay behind the markers so it is not obvious that this is a Google Map If you don't want to show a map, on the map, then why use Google Maps? Why not just drop points on a canvas? It's easy to load an image of the world into the background of your canvas/div/etc to

Re: Issues with Gwt Bootstrap on IE 8

2012-06-28 Thread Joseph Lust
Pretty much everything that's missing there (rounded borders, custom fonts, gradients) are not supported by IE8, hence you issue. Shim should do it. Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion

Re: google maps

2012-06-28 Thread Kyle Anderson
I need to be able to pan and zoom, that's why I'm using Google Maps. The solution I am thinking of is to prerender the map as a layer on the server, The user can then add markers as needed. Their delete operations, however, will not show up until they reload (not optimal, but I cannot think

Cell-Backed Widgets

2012-06-28 Thread July
HI all: I found one doc from GWT offcial wiki page, it's about cell-backed widgets: http://code.google.com/p/google-web-toolkit/wiki/CellBackedWIdgets The idea in this doc is really nice, however seem GWT does not continue with this idea? in this package: com.google.gwt.widget.client there are

reordering of column in celltable

2012-06-28 Thread tong123123
current, the column order in CellTable is fixed in coding, that is, something like Celltable.addColumn(col1, col1); Celltable.addColumn(col2, col2); Celltable.addColumn(col3, col3); .. Celltable.addColumn(col10, col10); 1) if user want to change this column order

Re: GWT 2.5 RC1 Is Here!

2012-06-28 Thread Rajeshwar Mishra
Great Thanks, Rajeshwar On Thu, Jun 28, 2012 at 2:09 AM, Rajeev Dayal rda...@google.com wrote: Hey all, We're excited to announce the GWT 2.5 Release Candidate! Read about it on the GWT Blog http://googlewebtoolkit.blogspot.com/2012/06/gwt-2.html, and download it here

[gwt-contrib] Issue 7062: documentation uses @DefaultText instead of @DefaultMessage (issue1766803)

2012-06-28 Thread t . broyer
Reviewers: jat, Description: Issue 7062: documentation uses @DefaultText instead of @DefaultMessage Please review this at https://gwt-code-reviews.appspot.com/1766803/ Affected files: M user/src/com/google/gwt/i18n/client/Messages.java M

[gwt-contrib] Re: Reorganized the GWT test suite structure for the nested constraint composition tests to fix errors. (issue1765803)

2012-06-28 Thread nchalko
lgtm http://gwt-code-reviews.appspot.com/1765803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Add instrumentation for collecting client-side code coverage. (issue1764803)

2012-06-28 Thread isbadawi
Reviewers: cromwellian, Description: Add instrumentation for collecting client-side code coverage. Please review this at http://gwt-code-reviews.appspot.com/1764803/ Affected files: M dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java A

[gwt-contrib] Minor cleanup of Super Dev Mode: move some static methods to a separate class. (issue1767803)

2012-06-28 Thread skybrian
Reviewers: acleung, Description: Minor cleanup of Super Dev Mode: move some static methods to a separate class. Please review this at http://gwt-code-reviews.appspot.com/1767803/ Affected files: A dev/codeserver/java/com/google/gwt/dev/codeserver/PageUtil.java M

[gwt-contrib] Allows creation of validators annotated by interfaces with abstract methods. All methods in an i... (issue1768803)

2012-06-28 Thread idol
Reviewers: Nick Chalko, Description: Allows creation of validators annotated by interfaces with abstract methods. All methods in an interface are abstract anyway, but this explicit denotation was throwing off the invocation via reflection. Fixes issues: 6284 [JSR 303 TCK Result] 167 of 205

[gwt-contrib] Re: Add instrumentation for collecting client-side code coverage. (issue1764803)

2012-06-28 Thread isbadawi
http://gwt-code-reviews.appspot.com/1764803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Minor cleanup of Super Dev Mode: move some static methods to a separate class. (issue1767803)

2012-06-28 Thread skybrian
http://gwt-code-reviews.appspot.com/1767803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors