SuperDevMode with 2.6.0-rc3 and logLevel

2013-12-07 Thread Patrice De Saint Steban
Hello, I test the new GWT version 2.6.0-rc3, the dev mode and the compile works with my application, but the super dev mode not work (it work with the 2.5.1 version). I have this problème : workDir: C:\Users\sfeir\AppData\Local\Temp\gwt-codeserver-2871590299772449765.tmp binding:

Re: Loading CssResource from a String?

2013-12-07 Thread Jens
You can use StyleInjector directly or use a dynamic host page and let the server directly embed this customized CSS (or a default one if no customization has been done) into the host page (I assume you store customized CSS in a database anyways). -- J. -- You received this message because

Re: SuperDevMode with 2.6.0-rc3 and logLevel

2013-12-07 Thread Jens
[ERROR] Errors in 'jar:file:/C:/Users/sfeir/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/super/com/google/common/collect/Lists.java' [ERROR] Line 595: No source code is available for type com.google.common.math.IntMath; did you forget to

Re: SingleSelectionModel with KeyProvider does not update selected object when data is refreshed

2013-12-07 Thread Ümit Seren
How does your KeyProvider look like ? Do you check on object equality or do you check equality of an id/key of your objects ? On Friday, December 6, 2013 3:35:46 PM UTC+1, stuckagain wrote: Hi, I noticed an issue in the SingleSelectionModel when used in combination with a KeyProvider and

Add Widget to the a Panel at first Position?

2013-12-07 Thread confile
If you want to add a Widget to a lets say FlowPanel you have to do the following: @UiFieldFlowPanel panel; Widget widget; // some widget panel.add(widget) This appends the widget to the panel, which means it comes a last position of the panel's child Widgets. I.e.: div div class=w1 /

How to get HTML source code from URL via servlet

2013-12-07 Thread Leandro Nascimento Teixeira
Olá membros, Eu preciso obter o conteúdo HTML quando solicitar uma página nas requisições servlet. Meu objetivo é fazer uma solicitação para determinado site (www.site.com/index.html) e obter em uma STRING o código HTML (HTMLbody./body/HTML) Obrigado -- You received this message

Re: Diagnose GWT DMP Plugin crashes on Chrome

2013-12-07 Thread Michael
I have the same issue too, just a less than a minute of testing, the GWT DMP plugin (chrome) will crashed. On Friday, September 27, 2013 1:09:43 AM UTC+8, Rutger van der Eijk wrote: For what it's worth: I have ran in the same issue when I recently started to work on a medium sized laptop.

Re: Layout with nested SplitLayoutPanel

2013-12-07 Thread Patrick Tucker
If its parent is already attached, you can just ask it how wide it is. -- 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: Layout with nested SplitLayoutPanel

2013-12-07 Thread Patrick Tucker
Pleasr provide some code. You just have to make sure the parent and its parents are added before you ask. -- 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

Create ImageResource from URL derived from DB?

2013-12-07 Thread Nolan Brassard
Is there a way to create an ImageResource from a URL? I have a scenario where I'd like to allow the user to give me a URL to an image that will then be used as the Icon of a certain button later on. The only way I know how to create an ImageResource is via a client bundle and setting @Source.

Re: Create ImageResource from URL derived from DB?

2013-12-07 Thread Thomas Broyer
On Saturday, December 7, 2013 6:18:06 PM UTC+1, Nolan Brassard wrote: Is there a way to create an ImageResource from a URL? I have a scenario where I'd like to allow the user to give me a URL to an image that will then be used as the Icon of a certain button later on. The only way I know

Re: Add Widget to the a Panel at first Position?

2013-12-07 Thread Oliver Krylow
There should be something like panel.insertBefore(...) which could satisfy both your requests. On Dec 7, 2013 4:10 PM, confile michael.gorsk...@googlemail.com wrote: If you want to add a Widget to a lets say FlowPanel you have to do the following: @UiFieldFlowPanel panel; Widget widget; //

Re: [gwt-contrib] Re: 2.6.0-rc3

2013-12-07 Thread Thomas Broyer
On Saturday, December 7, 2013 12:52:12 AM UTC+1, juan_pablo_gardella wrote: Thanks Colin, it seems this parameter disable some performance improvements: GWT attempts to load pre-compiled GWT module archives (.gwtar files) to increase performance. Consequently, building GWT examples

Re: [gwt-contrib] Re: 2.6.0-rc3

2013-12-07 Thread Juan Pablo Gardella
Thanks for the link Thomas, but as you said was updated in 2010. HostedMode appears in http://www.gwtproject.org/doc/latest/DevGuideCompilingAndDebugging.html at the section Development Mode Options. 2013/12/7 Thomas Broyer t.bro...@gmail.com On Saturday, December 7, 2013 12:52:12 AM

Re: [gwt-contrib] Re: 2.6.0-rc3

2013-12-07 Thread Thomas Broyer
On Friday, December 6, 2013 8:03:57 AM UTC+1, Roberto Lublinerman wrote: It seems that we need to build the release with -sourceLevel 6 for it to work with Java 6. I haven't tested it (I'm releasing gwt-maven-plugin at the same time) so I'll wait for Leeroy Jenkins, but I gave it a try