Re: How to make FlowPanel flow its children vertically like VerticalPanel?

2013-10-09 Thread David
If those children use display:block as style you will get what you need. Otherwise you will need to embed your widgets in a SimplePanel. David On Wed, Oct 9, 2013 at 7:21 AM, Tom henry...@gmail.com wrote: Google suggets use FlowPanel in replace of VerticalPanel since VerticalPanel does not

Re: How to make FlowPanel flow its children vertically like VerticalPanel?

2013-10-09 Thread Tom
thax you very much, it work nicely faster than VerticalPanel. On Wednesday, October 9, 2013 5:47:41 PM UTC+11, stuckagain wrote: If those children use display:block as style you will get what you need. Otherwise you will need to embed your widgets in a SimplePanel. David On Wed, Oct 9,

Issue with development mode plugin and Custom selection script / hosted.html that allows separate debugging of multiple GWT applications on a single page

2013-10-09 Thread Jamie Cramb
Hi all, I have a page which has multiple GWT applications running on it. When it comes to development mode / debugging from eclipse (using the dev mode plugin in chrome) we start to hit issues because if we put the gwt.codesvr param in the URL then all of the GWT applications on the page

Re: delayTestFinish() from GWTTestCase not working in pure java tests

2013-10-09 Thread Thomas Broyer
https://gwt.googlesource.com/gwt/+/master/user/test/com/google/web/bindery/requestfactory/ On Tuesday, October 8, 2013 9:01:21 PM UTC+2, Derek Thurn wrote: That sounds promising, got a link to the tests? On Tuesday, October 8, 2013 8:22:18 AM UTC-7, Thomas Broyer wrote: On Tuesday, October

Re: RequestFactory cannot set a Ref? argument on EntityProxy (Objectify)

2013-10-09 Thread Thomas Broyer
On Tuesday, October 8, 2013 11:35:09 PM UTC+2, Manu Botija wrote: I am still stuck here. I have seen this nice post http://stackoverflow.com/a/5642394/2819482on SO and verified that I comply to its recommendations. - I don't store any RequestContext instance. - I have two immutable

Re: RequestFactory cannot set a Ref? argument on EntityProxy (Objectify)

2013-10-09 Thread Manu Botija
It's actually not. Because passing them to a RequestContext (either as argument to service methods, or as property values of another proxy) will edit() them, so you have to make sure you won't have two RequestContext that want to use those proxies concurrently (because a proxy can only be

Re: Problems using JavaMail within hosted mode in Eclipse

2013-10-09 Thread Fatheranderson Ffather
Hello i faced with problem: javax.mail.NoSuchProviderException: smtp at javax.mail.Session.getService(Session.java:798) under running application in hosted mode. Can you give advise to me on fix this issue? but I cant understand how to add special

javax.mail.NoSuchProviderException: smtp in GWT HostMode (devmode)

2013-10-09 Thread Fatheranderson Ffather
Hello i faced with problem: javax.mail.NoSuchProviderException: smtp at javax.mail.Session.getService(Session.java:798) under running application in hosted mode. Can you give advise to me on fix this issue? I found this topic :

Re: Problems using JavaMail within hosted mode in Eclipse

2013-10-09 Thread Ari Luoma
Sorry, but I haven't used Maven and can't help you with that. -- 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: RequestFactory cannot set a Ref? argument on EntityProxy (Objectify)

2013-10-09 Thread Manu Botija
For those using Objectify + RequestFactory, I found where my issue is: - Following David Chandler's recommendations herehttp://turbomanage.wordpress.com/2011/03/25/using-gwt-requestfactory-with-objectify/, I have a base EntityObject from which all my entities inherit. That EntityObject has a

Re: RequestFactory cannot set a Ref? argument on EntityProxy (Objectify)

2013-10-09 Thread Manu Botija
Problem solved. There are tons of existing tickets about this issue (exhttps://groups.google.com/forum/?fromgroups#!searchin/google-web-toolkit/requestfactory$20don$27t$20allow$20appengine$20parent$20relationship/google-web-toolkit/OmxjBgBbFhU/LtZYV7iWa90J,

Re: arondor-common-reflection, a new library to use Spring beans in GWT :

2013-10-09 Thread Srini v
Can you please post the link to your library On Tuesday, 8 October 2013, Juan Pablo Gardella wrote: Which is the library URL? 2013/10/8 Francois Barre francois.ba...@gmail.com javascript:_e({}, 'cvml', 'francois.ba...@gmail.com'); Hi GWT people ! I am pleased to annonce the first public

Re: arondor-common-reflection, a new library to use Spring beans in GWT :

2013-10-09 Thread Thomas Broyer
Probably https://github.com/Doloops/arondor-common-reflection On Wednesday, October 9, 2013 4:15:16 PM UTC+2, chinni wrote: Can you please post the link to your library On Tuesday, 8 October 2013, Juan Pablo Gardella wrote: Which is the library URL? 2013/10/8 Francois Barre

Error when defining a generic Composite widget using Java Generics

2013-10-09 Thread Steen Lillethorup Frederiksen
I am trying to create a generic Composite widget, using Java Generics. However I keep getting the assertion error: java.lang.AssertionError: This UIObject's element is not set; you may be missing a call to either Composite.initWidget() or UIObject.setElement() I have defined my Composite

Re: arondor-common-reflection, a new library to use Spring beans in GWT :

2013-10-09 Thread Srini v
Thanks Thomas On Wednesday, 9 October 2013, Thomas Broyer wrote: Probably https://github.com/Doloops/arondor-common-reflection On Wednesday, October 9, 2013 4:15:16 PM UTC+2, chinni wrote: Can you please post the link to your library On Tuesday, 8 October 2013, Juan Pablo Gardella wrote:

Re: error in opening zip file

2013-10-09 Thread shyamasree saha
Hello did you manage to solve this issue? if yes how? Can you kindly let me know? Thanks Shyama On Tuesday, 21 June 2011 20:59:36 UTC+1, André Nishimura wrote: Hello I need help! I'm trying to run my application in eclipse but i have this problem: Starting Jetty on port [WARN]

Re: Error when defining a generic Composite widget using Java Generics

2013-10-09 Thread Jens
How does the StackTrace look like? Is getElement().setId(guiId) causing the error or something else? Have you accidentally overridden Composite.initWidget() in your sub class? -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Why it got error when using splitLayoutPanel.getWidget(1) (centered widget) but ok if using splitLayoutPanel.getWidget(0) (west widget)?

2013-10-09 Thread Tom
Lokk at this code; *SplitLayoutPanel splitLayoutPanel=new SplitLayoutPanel();* *splitLayoutPanel.addWest(new Label(west), 200); * *splitLayoutPanel.add(new Label(center));* then *Label myWestLb= (Label)**splitLayoutPanel.getWidget(0); *//this code is ok, no problem *Label myCentralLb=

[gwt-contrib] Issue with development mode plugin and Custom selection script / hosted.html that allows separate debugging of multiple GWT applications on a single page

2013-10-09 Thread Jamie Cramb
Hi all, I have a page which has multiple GWT applications running on it. When it comes to development mode / debugging from eclipse (using the dev mode plugin in chrome) we start to hit issues because if we put the gwt.codesvr param in the URL then all of the GWT applications on the page

[gwt-contrib] Re: Issue with development mode plugin and Custom selection script / hosted.html that allows separate debugging of multiple GWT applications on a single page

2013-10-09 Thread Thomas Broyer
Too bad you started investing time in a solution to a problem that's already solved! You first have to use the xsiframe linker (which BTW is not a bad idea; I think we should make it the default linker in some future release), then just use gwt.codesvr.myModule instead of gwt.codesvr, where

Re: [gwt-contrib] Re: Steering committee meeting on GWT 3.0 IE Java compatibility

2013-10-09 Thread Brian Slesinsky
Okay, we previously talked about having some kind of deprecation policy and I'm fine with that; it seems a lot more limited in scope. I think a reasonable thing to do is to announce that we're dropping a browser version one release before it happens, so we should decide now about what we're going