Re: Order of instantiation in UI-Binder?

2013-05-08 Thread Kody
OK that would be possible in general, though I require my stuff in the g:center as it should just take all space that is left in the window. South would require a fixed size... 2013/5/8 Thad thad.humphr...@gmail.com You may have to wait for the entire panel to render before making a call on

Call .NET ( asmx webservice )

2013-05-08 Thread Ibrahim Abd Said Hanna
* I use *this code to request URL and then parse xml but the problem is that status code returned is zero ?? RequestBuilder rb = new RequestBuilder(RequestBuilder.GET, URL.encode(http://www.w3schools.com/webservices/tempconvert.asmx/CelsiusToFahrenheit?Celsius=50;));

WebAppCreator failed

2013-05-08 Thread Nigel Smith
Hi, I'm running Eclipse Juno / WIndows 7 / Java jdk1.7.0_21 / GWT - 2.5.1 / App Engine 1.7.7 and I'm getting the Invocation of com.google.gwt.user.tools.WebAppCreator failed error message. A quick browse offered up 3 solutions as below, each of which I have tried to no avail. 1. Remove

Re: Order of instantiation in UI-Binder?

2013-05-08 Thread Jens
SplitLayoutPanel is a DockLayoutPanel and a DockLayoutPanel requirement is that the center layer is added last. Once the center layer is added you can not add anything else. Thats because the center panel takes the remaining space and thus the panel needs to know what is already inside that

Re: GWT Designer crashes Eclipse when i switch the editor-tab to Design...

2013-05-08 Thread Costis Aivalis
Hello Michael! Thank you for your suggestions. I have done some 10 fresh installs on empty work-spaces. There seems to be an incompatibility with xulrunner. GWT designer needs 1.9.1.x or 1.9.2.x, while these versions may be incompatible with Ubuntu 13.04. I have Icedtea-plugin 1.3.2-1ubuntu1,

Re: GWT 2.4 - problems with space key handling and FieldUpdater for TextInputCell inside CompositeCell in CellTree

2013-05-08 Thread Michael Altmann
I am facing the same issue and cannot figure out how the original poster set up event handling to get this working. Any help would be greatly appreciated. Right now my CellTree with TextInputCells will not accepts spaces. On Wednesday, August 29, 2012 5:30:10 AM UTC-5, BhaskerT wrote: Hi

Re: RequestFactory sending entire list even when nothing changed in the list

2013-05-08 Thread Thomas Broyer
On Tuesday, May 7, 2013 6:28:00 PM UTC+2, Yan wrote: Hi there, Using GWT 2.4 request factory, but observed this. I have an EntityProxy (parent) containing a list of EntityProxy (children). I put the parent in edit mode, update an attribute on the parent and then persist the parent, I

Re: GWT Asynchronous Form Calls

2013-05-08 Thread Thomas Broyer
FormPanel by defaults submits to an iframe, and will notify you with the FormPanel.SubmitCompleteHandler; as such it *is* already asynchronous. On Tuesday, May 7, 2013 11:53:23 PM UTC+2, Robson Braga wrote: Hi everyone, I'm developing a GWT App based on forms (FormPanel) where forms's

Re: mouse over tab (TabLayoutPanel) to select

2013-05-08 Thread Patrick Tucker
Instead of using add(Widget, String) to add tabs use add(Widget,Widget). Your second argument will be a widget that you have added a mouse over handler to that will instruct the TabLayoutPanel to select the appropriate tab by calling selectTab(int) or selectTab(Widget). On Tuesday, May 7,

Re: Order of instantiation in UI-Binder?

2013-05-08 Thread Patrick Tucker
Have you tried providing, in the java code, the widget that is being added to the center? That is assuming the widget that you are adding is what you are calling to get the NPE. Some code would probably go a long way in getting better guidance... On Tuesday, May 7, 2013 7:12:09 AM UTC-4,

SubmitCompleteEvent.getResults() always returns null

2013-05-08 Thread Robson Braga
Hi guys, I've a RESTful webservice that returns xml/json and it works properly. If I submit a HTML form to that webservice, Firefox and Chrome shows the XML file, but when I try to submit a GWT FormPanel, on the onSubmitComplete callback, SubmitCompleteEvent.getResults() always returns null.

Re: mouse over tab (TabLayoutPanel) to select

2013-05-08 Thread Jens
Am Mittwoch, 8. Mai 2013 17:08:10 UTC+2 schrieb Weihua: Thank you very much. how to do it in UIBinder then?? Instead of g:headertext/g:header you would use g:customheadermy:Widget //g:customheader -- J. -- You received this message because you are subscribed to the Google Groups Google

Re: mouse over tab (TabLayoutPanel) to select

2013-05-08 Thread Chen Weihua
thank you very much!! On Wed, May 8, 2013 at 5:21 PM, Jens jens.nehlme...@gmail.com wrote: Am Mittwoch, 8. Mai 2013 17:08:10 UTC+2 schrieb Weihua: Thank you very much. how to do it in UIBinder then?? Instead of g:headertext/g:header you would use g:customheadermy:Widget

Re: GWT Designer crashes Eclipse when i switch the editor-tab to Design...

2013-05-08 Thread Thad
Yeah, don't feel like the Lone Ranger. :) I've had this problem on both openSUSE Linux and Windows 7. I've seen others complaining about it also. Fortunately (I guess) I never found GWT Designer very useful for drag-and-drop GUI building. However I do miss it for quick glimpses into how my

Re: SubmitCompleteEvent.getResults() always returns null

2013-05-08 Thread Robson Braga
OK, I realized what I'm doing is a cross-domain call, thanks to @tip, the result html can be null as a result of submitting a form to a different domain. However, how do I solve this thing out? I really don't know what to do... Em quarta-feira, 8 de maio de 2013 12h09min56s UTC-3, Robson

Re: GWT Designer crashes Eclipse when i switch the editor-tab to Design...

2013-05-08 Thread Costis Aivalis
Thank you Kimosabe! I rather feel like Tonto... I do like the Designer, when it works, and seem to miss it. Fortunately It still works in Ubuntu 12.10 and in Windows 7. I have spent too much time trying to get it to work... On Wednesday, May 8, 2013 8:57:03 PM UTC+3, Thad wrote: Yeah, don't

Re: GWT compilation failed

2013-05-08 Thread Mike
I had this same issue, and deleting the gwt-unitCache worked for me. Thanks On Tuesday, April 30, 2013 2:29:52 AM UTC-4, Magnus wrote: Hi, solved. I tried around several things. I think deleting the files in the gwt-unitCache folder solved it. Thanks Magnus -- You received this

Re: GWT Designer crashes Eclipse when i switch the editor-tab to Design...

2013-05-08 Thread Michael Prentice
You may be able to get some more info or help at the Eclipse WindowBuilder forums here: http://www.eclipse.org/forums/index.php/f/214/ Eric Clayberg is usually monitoring those forums and responding to issues. There are some posts there that mention Ubuntu. On Wednesday, May 8, 2013 3:31:13

Re: Order of instantiation in UI-Binder?

2013-05-08 Thread Kody
OK I see that's not as easy as I thought. Probably I should refactor my code instead of trying a hacky solution. Thansk! 2013/5/8 Patrick Tucker tucker...@gmail.com Have you tried providing, in the java code, the widget that is being added to the center? That is assuming the widget that you

Re: How to dynamically fullsize a Canvas to a Dock-center?

2013-05-08 Thread Kara Marie Rawson
read this, http://stackoverflow.com/questions/11750268/how-to-get-the-width-height-of-a-canvas its surprising not what you think. Why google, why??? kara m On Sunday, April 28, 2013 9:13:32 AM UTC-5, membersound wrote: Hi, I have a canvas within the following layout: DockLayoutPanel

Re: GWT Image editing

2013-05-08 Thread Kara Marie Rawson
yep, use canvas it will work smoother, especially if you plan on allowing the user to drag to position image B at some point. Honestly if you plan on not using canvas, atleast use dynamic CSS to handle the image position overlay and just stick the images in a simple LayoutContainer. I dont

Re: GWT Image editing

2013-05-08 Thread Kara Marie Rawson
forgot the link sorry, http://www.html5canvastutorials.com/tutorials/html5-canvas-images/ On Wednesday, May 8, 2013 4:31:27 PM UTC-5, Kara Marie Rawson wrote: yep, use canvas it will work smoother, especially if you plan on allowing the user to drag to position image B at some point.

Deploying GWT 2.5 on Resin 2.1.17

2013-05-08 Thread alankamp2...@yahoo.com
Hi, I am working on a project for a professor's class and that involves converting old jsp pages to GWT code. I have been able to run my application in the hosted mode and have also been able to run it on the production server which is Resin 2.1.17, without writing any calls to the server.

[gwt-contrib] Re: Re-enabling commits in Gerrit

2013-05-08 Thread Thomas Broyer
Just to clarify: does that mean the SVN is now dead? (except for GWT_TOOLS) Anyway, thanks a lot for your work Matthew! On Wednesday, May 8, 2013 2:27:17 AM UTC+2, Matthew Dempsky wrote: FYI, this is now live. Members of the gwt-maintainers group have +2 code-review and submit permissions

Re: [gwt-contrib] Re: Re-enabling commits in Gerrit

2013-05-08 Thread Matthew Dempsky
On Wed, May 8, 2013 at 4:31 AM, Thomas Broyer t.bro...@gmail.com wrote: Just to clarify: does that mean the SVN is now dead? (except for GWT_TOOLS) Pretty much, unless something really serious comes up that forces us to temporarily switch back. We'll continue mirroring to subversion for the

[gwt-contrib] Change in gwt[master]: dummy testing commit

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has uploaded a new change for review. https://gwt-review.googlesource.com/2660 Change subject: dummy testing commit .. dummy testing commit Change-Id: If0881f00eaafbb05190a0640f82559dda09545d6 --- M

[gwt-contrib] Change in gwt[master]: dummy testing commit

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has uploaded a new change for review. https://gwt-review.googlesource.com/2670 Change subject: dummy testing commit .. dummy testing commit Change-Id: If0881f00eaafbb05190a0640f82559dda09545d7 --- M

[gwt-contrib] Change in gwt[master]: dummy testing commit

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has abandoned this change. Change subject: dummy testing commit .. Abandoned Testing. -- To view, visit https://gwt-review.googlesource.com/2670 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Testing again.

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has uploaded a new change for review. https://gwt-review.googlesource.com/2671 Change subject: Testing again. .. Testing again. Change-Id: Ic927ad9a06e7ca780045b4255b1a2577e9b3f291 --- M build.xml 1 file

[gwt-contrib] Change in gwt[master]: Testing again.

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has abandoned this change. Change subject: Testing again. .. Abandoned Abandon. -- To view, visit https://gwt-review.googlesource.com/2671 To unsubscribe, visit https://gwt-review.googlesource.com/settings

[gwt-contrib] Change in gwt[master]: Adds part of Java 7 new language features.

2013-05-08 Thread Roberto Lublinerman
Roberto Lublinerman has uploaded a new patch set (#5). Change subject: Adds part of Java 7 new language features. .. Adds part of Java 7 new language features. Adds the Java 7 new language features: namely, the diamond

[gwt-contrib] Change in gwt[master]: Adds the remaining (and more complex) Java 7 new language fe...

2013-05-08 Thread Roberto Lublinerman
Roberto Lublinerman has abandoned this change. Change subject: Adds the remaining (and more complex) Java 7 new language features. .. Abandoned Redid as dependent patch. -- To view, visit

[gwt-contrib] Change in gwt[master]: Upgrade JDT to 3.8.3.

2013-05-08 Thread Roberto Lublinerman
Roberto Lublinerman has abandoned this change. Change subject: Upgrade JDT to 3.8.3. .. Abandoned Submitted, thanks! -- To view, visit https://gwt-review.googlesource.com/2361 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Adds the remaining (and more complex) Java 7 new language fe...

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Adds the remaining (and more complex) Java 7 new language features. .. Patch Set 1: Verified-1 Oops, this change failed the build and/or style presubmit.

[gwt-contrib] Change in gwt[master]: Adds part of Java 7 new language features.

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Adds part of Java 7 new language features. .. Patch Set 5: Verified+1 Hoorays, this change passed the build and style presubmit. :D More details at

[gwt-contrib] Change in gwt[master]: Adds the remaining (and more complex) Java 7 new language fe...

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Adds the remaining (and more complex) Java 7 new language features. .. Patch Set 1: (1 comment) File

[gwt-contrib] Change in gwt[master]: Adds the remaining (and more complex) Java 7 new language fe...

2013-05-08 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Adds the remaining (and more complex) Java 7 new language features. .. Patch Set 1: (9 comments)

[gwt-contrib] Change in gwt[master]: A

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has uploaded a new change for review. https://gwt-review.googlesource.com/2661 Change subject: A .. A Change-Id: Ia518ca4bdac81eaf863ebf6f193de87abb115851 --- M build.xml 1 file changed, 1 insertion(+), 0

[gwt-contrib] Change in gwt[master]: B

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has uploaded a new change for review. https://gwt-review.googlesource.com/2662 Change subject: B .. B Change-Id: I507c952ef6a914e08682918e986406271b7cec8f --- M build.xml 1 file changed, 1 insertion(+), 0

[gwt-contrib] Change in gwt[master]: B

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has uploaded a new patch set (#2). Change subject: B .. B Change-Id: I507c952ef6a914e08682918e986406271b7cec8f --- M build.xml 1 file changed, 1 insertion(+), 0 deletions(-) -- To view, visit

[gwt-contrib] Change in gwt[master]: Adds the remaining (and more complex) Java 7 new language fe...

2013-05-08 Thread Roberto Lublinerman
Hello Matthew Dempsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2681 to look at the new patch set (#2). Change subject: Adds the remaining (and more complex) Java 7 new language features.

[gwt-contrib] Change in gwt[master]: Adds the remaining (and more complex) Java 7 new language fe...

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Adds the remaining (and more complex) Java 7 new language features. .. Patch Set 2: Verified+1 Hoorays, this change passed the build and style presubmit.

[gwt-contrib] Change in gwt[master]: Allow line breaks and other whitespace in jsni method refere...

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Allow line breaks and other whitespace in jsni method references. .. Patch Set 2: Verified+1 Hoorays, this change passed the build and style presubmit. :D

[gwt-contrib] Change in gwt[master]: reduces Java AST optimization time by bailing out when the r...

2013-05-08 Thread John Stalcup
John Stalcup has abandoned this change. Change subject: reduces Java AST optimization time by bailing out when the rate of change slows to a crawl (only applies on optimization levels less than 9) .. Abandoned submitted

[gwt-contrib] Change in gwt[master]: preparation for turning off Dataflow Optimizer to speed up o...

2013-05-08 Thread John Stalcup
John Stalcup has abandoned this change. Change subject: preparation for turning off Dataflow Optimizer to speed up optimized compiles (at optimization levels less than 9) .. Abandoned submitted -- To view, visit

[gwt-contrib] Change in gwt[master]: Allow GWT to continue even in presence of internal JDT compi...

2013-05-08 Thread Roberto Lublinerman
Roberto Lublinerman has uploaded a new change for review. https://gwt-review.googlesource.com/2683 Change subject: Allow GWT to continue even in presence of internal JDT compiler Errors. .. Allow GWT to continue even in

[gwt-contrib] Change in gwt[master]: Allow GWT to continue even in presence of internal JDT compi...

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Allow GWT to continue even in presence of internal JDT compiler Errors. .. Patch Set 1: Verified+1 Hoorays, this change passed the build and style

[gwt-contrib] Change in gwt[master]: Allow GWT to continue even in presence of internal JDT compi...

2013-05-08 Thread Roberto Lublinerman
Hello Matthew Dempsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2683 to look at the new patch set (#3). Change subject: Allow GWT to continue even in presence of internal JDT compiler Errors.

[gwt-contrib] Change in gwt[master]: Allow GWT to continue even in presence of internal JDT compi...

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Allow GWT to continue even in presence of internal JDT compiler Errors. .. Patch Set 2: Verified+1 Hoorays, this change passed the build and style

[gwt-contrib] Change in gwt[master]: Allow GWT to continue even in presence of internal JDT compi...

2013-05-08 Thread Roberto Lublinerman
Hello Matthew Dempsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2683 to look at the new patch set (#4). Change subject: Allow GWT to continue even in presence of internal JDT compiler Errors.

[gwt-contrib] Change in gwt[master]: Allow GWT to continue even in presence of internal JDT compi...

2013-05-08 Thread Roberto Lublinerman
Hello Matthew Dempsky, Matthew Dempsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2683 to look at the new patch set (#5). Change subject: Allow GWT to continue even in presence of internal JDT compiler Errors.

[gwt-contrib] Change in gwt[master]: Allow GWT to continue even in presence of internal JDT compi...

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Allow GWT to continue even in presence of internal JDT compiler Errors. .. Patch Set 3: Verified+1 Hoorays, this change passed the build and style

[gwt-contrib] Change in gwt[master]: Allow GWT to continue even in presence of internal JDT compi...

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Allow GWT to continue even in presence of internal JDT compiler Errors. .. Patch Set 4: Verified+1 Hoorays, this change passed the build and style

[gwt-contrib] Change in gwt[master]: Allow GWT to continue even in presence of internal JDT compi...

2013-05-08 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Allow GWT to continue even in presence of internal JDT compiler Errors. .. Patch Set 5: Verified+1 Hoorays, this change passed the build and style