Re: Close Event thrown before click event ?

2013-03-14 Thread Dominic Warzok
This won't work either. In my opinion the Problem is, if the panel is open and you click on the button the Panel will be closed and the button is enabled again. But then the clickEvent reach the button and so the panel is shown again. On Wednesday, March 13, 2013 11:07:02 PM UTC+1,

Re: Debug Id (or equivalent) for CellTable elements?

2013-03-14 Thread Plamen Veselinov
Thanks Jacob, Our current project is not so complicated. However later this year we'll use GWT to build a more sophisticated project. Tables and cells are on of the most common object in a web page. Your approach makes the test code independent of the actual source of the app. However I was

Re: GWT 2.5.1 now available

2013-03-14 Thread Thomas Broyer
The p2 release is made by the Google Plugin for Eclipse team, you should ask on https://groups.google.com/d/forum/google-plugin-eclipse On Thursday, March 14, 2013 6:33:36 AM UTC+1, jduffy wrote: Thank you to all the GWT contributors for this new release. Keep up the great work! Has 2.5.1

Re: Close Event thrown before click event ?

2013-03-14 Thread Thomas Broyer
Try adding the button's elementhttp://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/UIObject.html#getElement()as an auto-hide

Re: GWT 2.5.1 now available

2013-03-14 Thread basil
Cannot find the 2.5.1 release anywhere in SVN: svn list http://google-web-toolkit.googlecode.com/svn/releases svn list http://google-web-toolkit.googlecode.com/svn/tags svn list http://google-web-toolkit.googlecode.com/svn/branches Could you clarify, which SVN revision corresponds to the new

Re: SuperDev mode and changing RPC strong names causes problems

2013-03-14 Thread Thomas Broyer
On Thursday, March 14, 2013 1:31:50 AM UTC+1, kabram wrote: Our setup is as follows: - Server code runs in a tomcat instance. Our ant build process compiles and sets up the server war. As part of the build, GWT is also built. - We compile the client side code in dev-mode or

Re: GWT 2.5.1 now available

2013-03-14 Thread Thomas Broyer
On Thursday, March 14, 2013 9:29:39 AM UTC+1, basil wrote: Cannot find the 2.5.1 release anywhere in SVN: svn list http://google-web-toolkit.googlecode.com/svn/releases svn list http://google-web-toolkit.googlecode.com/svn/tags svn list http://google-web-toolkit.googlecode.com/svn/branches

Re: Close Event thrown before click event ?

2013-03-14 Thread Dominic Warzok
This is a nice idea but doesn't work too :-(. On Thursday, March 14, 2013 9:27:45 AM UTC+1, Thomas Broyer wrote: Try adding the button's elementhttp://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/UIObject.html#getElement()as an auto-hide

Re: Async call returning and executing before calling method finishes in Dev mode?

2013-03-14 Thread Thomas Broyer
Because the requests are made by the browser, this shouldn't be different in prod vs. dev mode. Was it in Firefox? 'cause it has a bug where it could execute scripts concurrently in some cases: https://code.google.com/p/google-web-toolkit/issues/detail?id=7926 On Thursday, March 14, 2013

Re: Trigger button on ENTER inside a TextBox?

2013-03-14 Thread Kody
Thanks Jens. Yes I use uibinder, did not know I can register more than one widget to the same handler method. Will go for this approach. 2013/3/14 K vfdsdfbsdb kazuoh...@gmail.com sure you must add keyListener for all TextBox . But if you create one method,it 's smart. example for private

Re: Async call returning and executing before calling method finishes in Dev mode?

2013-03-14 Thread GWTter
Hi Thomas, Yes, I was running it in Firefox, sorry for not mentioning it before. But I guess I stumbled onto the same bug here too. This puts me at ease now though since I know that there shouldn't be any concurrent execution: the calling method should finish before executing the async

XMLParser Problems

2013-03-14 Thread skippy
I am trying to load this xml file into a hashmap or list using XMLParser. What ever I try, I keep getting a node list of 1 with all the nodes in it. Here is an example of the xml file: item ACCT00031MEB0009/ACCT000 ACCT068C. WALKER - SHORT TITLE LINE/ACCT068 ACCT069C. WALKER

gwt built in gwt.i18n.server.* utitlity

2013-03-14 Thread Luke
Is there any built in i18n server side utility to read localizableResource.properties file ? i found class gwt.i18n.server.MessageUtils.*() how to use it? I want to use i18n on server side. Any tutorial on this? -- You received this message because you are subscribed to the Google

Re: gwt built in gwt.i18n.server.* utitlity

2013-03-14 Thread Thomas Broyer
On Thursday, March 14, 2013 4:39:07 PM UTC+1, Luke wrote: Is there any built in i18n server side utility to read localizableResource.properties file ? i found class gwt.i18n.server.MessageUtils.*() how to use it? I want to use i18n on server side. Any tutorial on this? This is

gwt-maven-plugin JVM failures

2013-03-14 Thread dhoffer
All of a sudden, we are getting the following build errors with our GWT 2.5.0 builds. Any idea what would cause this? This was working fine. Our extraJvmArgs are. extraJvmArgs-Xms1024m -Xmx1024m -XX:MaxPermSize=256m

Re: gwt-maven-plugin JVM failures

2013-03-14 Thread dhoffer
And if I remove the -XX:MaxPermSize=256m option...then it fails on the -Xmx1024m parameter. -Dave On Thursday, March 14, 2013 10:28:54 AM UTC-6, dhoffer wrote: All of a sudden, we are getting the following build errors with our GWT 2.5.0 builds. Any idea what would cause this? This was

Re: GWT 2.5.1 now available

2013-03-14 Thread Matthew Dempsky
On Wed, Mar 13, 2013 at 10:33 PM, jduffy jdu...@vorpalware.com wrote: Has 2.5.1 been posted to the Eclipse update site yet? When I check for software updates in Eclipse it says that none are available.. Should it automatically update from 2.5.0 to 2.5.1? I'm not very familiar with the

Re: GWT 2.5.1 now available

2013-03-14 Thread Matthew Dempsky
On Thu, Mar 14, 2013 at 1:29 AM, basil v.kary...@gmail.com wrote: Cannot find the 2.5.1 release anywhere in SVN: Sorry, oversight on my part. The tag is tags/2.5.1. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from

Re: gwt-maven-plugin JVM failures

2013-03-14 Thread David Hoffer
Found the bug. The plugin requires that tag to be all on one line in the XML file...reading like a text file instead of XML. Our IDE formatted the XML so it looks good and that caused the problem with the plugin. -Dave On Thu, Mar 14, 2013 at 10:34 AM, dhoffer dhoff...@gmail.com wrote: And

Re: XMLParser Problems

2013-03-14 Thread skippy
On Thursday, March 14, 2013 8:02:13 AM UTC-5, skippy wrote: I am trying to load this xml file into a hashmap or list using XMLParser. What ever I try, I keep getting a node list of 1 with all the nodes in it. Here is an example of the xml file: item ACCT00031MEB0009/ACCT000

Re: GWT 2.5.1 now available

2013-03-14 Thread Michael Prentice
Looking forward to checking it out once the GPE update is available. Thank you. On Thursday, March 14, 2013 4:24:06 AM UTC-4, Thomas Broyer wrote: The p2 release is made by the Google Plugin for Eclipse team, you should ask on https://groups.google.com/d/forum/google-plugin-eclipse On

Re: GWT 2.5.1 now available

2013-03-14 Thread jduffy
Thanks for the feedback, Matthew Eclipse still reports that no updates are available. Just for clarity, I originally installed the GWT SDK and related Eclipse plugins by doing the following: 1. Clicked 'Help-Install New Software' from the Eclipse menu 2. Clicked 'Add' to create a new

[gwt-contrib] Missing tag for 2.5.1

2013-03-14 Thread Thomas Broyer
Hi there, Could someone tag the 2.5.1 release in the SVN? TIA -- -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups Google Web Toolkit Contributors group. To unsubscribe from this group and stop

[gwt-contrib] Re: Missing tag for 2.5.1

2013-03-14 Thread Matthew Dempsky
Oops, done. On Thu, Mar 14, 2013 at 1:35 AM, Thomas Broyer t.bro...@gmail.com wrote: Hi there, Could someone tag the 2.5.1 release in the SVN? TIA -- -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the

[gwt-contrib] Re: Missing tag for 2.5.1

2013-03-14 Thread Thomas Broyer
Thanks On Thursday, March 14, 2013 6:02:17 PM UTC+1, Matthew Dempsky wrote: Oops, done. On Thu, Mar 14, 2013 at 1:35 AM, Thomas Broyer t.br...@gmail.comjavascript: wrote: Hi there, Could someone tag the 2.5.1 release in the SVN? TIA -- --

[gwt-contrib] Change in gwt[master]: add Class.getSimpleName to gwt emulation

2013-03-14 Thread Daniel Kurka
Daniel Kurka has uploaded a new change for review. https://gwt-review.googlesource.com/2220 Change subject: add Class.getSimpleName to gwt emulation .. add Class.getSimpleName to gwt emulation fixes issue 3404 Change-Id:

[gwt-contrib] Change in gwt[master]: add Class.getSimpleName to gwt emulation

2013-03-14 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: add Class.getSimpleName to gwt emulation .. Patch Set 1: Code-Review+1 LGTM -- To view, visit https://gwt-review.googlesource.com/2220 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Adds two new optional configuration properties to allow the ...

2013-03-14 Thread Ray Cromwell
Ray Cromwell has uploaded a new change for review. https://gwt-review.googlesource.com/2230 Change subject: Adds two new optional configuration properties to allow the JsNamer passes to exclude a set of predefined symbols or symbol suffixes in the output. This is to enable better

[gwt-contrib] Change in gwt[master]: Avoid running JsInliner on the full JavaScript tree.

2013-03-14 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Avoid running JsInliner on the full JavaScript tree. .. Patch Set 9: (1 comment) File

[gwt-contrib] Change in gwt[master]: Adds two new optional configuration properties to allow the ...

2013-03-14 Thread Ray Cromwell
Ray Cromwell has uploaded a new patch set (#2). Change subject: Adds two new optional configuration properties to allow the JsNamer passes to exclude a set of predefined symbols or symbol suffixes in the output. This is to enable better integration with closure compiler which has

[gwt-contrib] Change in gwt[master]: Adds two new optional configuration properties to allow the ...

2013-03-14 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Adds two new optional configuration properties to allow the JsNamer passes to exclude a set of predefined symbols or symbol suffixes in the output. This is to enable better integration with closure compiler which has

[gwt-contrib] Change in gwt[master]: Adds two new optional configuration properties to allow the ...

2013-03-14 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Adds two new optional configuration properties to allow the JsNamer passes to exclude a set of predefined symbols or symbol suffixes in the output. This is to enable better integration with closure compiler which has