Re: What is the default linker 2.7.0?

2014-12-04 Thread Juan Pablo Gardella
I have the same problem. I had to add the linker. On 4 December 2014 at 19:08, Jens wrote: > "xsiframe" is the default linker in 2.7.0. But maybe some of your gwt.xml > files (or of your libraries) add a different linker. > > -- J. > > -- > You received this message because you are subscribed to

Re: What is the default linker 2.7.0?

2014-12-04 Thread Jens
"xsiframe" is the default linker in 2.7.0. But maybe some of your gwt.xml files (or of your libraries) add a different linker. -- J. -- 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

Re: GWT 2.6 - JDK 1.6?

2014-12-04 Thread Jens
No you can use JDK 1.7 as well. -- J. -- 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 google-web-toolkit+unsubscr...@googlegroups.com. To post to this gro

What is the default linker 2.7.0?

2014-12-04 Thread Rogelio Flores
I seem to remember reading somewhere in the documentation that the "xsiframe" linker is now the default linker in gwt 2.7.0 (and Thomas Broyer just mentioned this recently--see: https://groups.google.com/forum/#!searchin/google-web-toolkit/xsiframe$20default$20linker$20in$202.7.0/google-web-tool

GWT 2.6 - JDK 1.6?

2014-12-04 Thread Łukasz Bączek
Hello, GWT GIT: git clone https://gwt.googlesource.com//gwt/ I downloaded the source GWT 2.6 but in the readme file write "Window-> Preferences-> Java-> Build Path-> Classpath Variables Create a variable named "GWT_TOOLS" pointing to your "tools" folder. Create a variable named "JDK_HOME" point

Re: TabLayoutPanel - forcing onResize for unselected tab content

2014-12-04 Thread Vassilis Virvilis
Assuming that the problem is that the ProvidesResize, RequiresResize chainis broken somewhere... Generally one of the trickiest (at least for me) puzzles in GWT is to find where the ProvidesResize, RequiresResize chain breaks. It may be a Composite from a uibinder file (instead of a ResizeComposit

Re: TabLayoutPanel - forcing onResize for unselected tab content

2014-12-04 Thread Magnus
Hi, I implemented the resizing as in Vassilis' code. But when calling the inner line ((RequiresResize) w).onResize(); the size of the chess board is still zero! So I replaced this inner line with this: scheduleResize((RequiresResize) w); ... private void scheduleResize (RequiresResize wgt) {

Re: New Run Configuration after GWT Update

2014-12-04 Thread Thomas Broyer
On Wednesday, December 3, 2014 7:09:17 PM UTC+1, Magnus wrote: > > Hi Thomas, > > thanks, this is really cool! > Will the normal "DevMode" continue to exist? > "Classic DevMode" will stay for some time, but will ultimately be replaced by SDM. I think classic DevMode won't go away until JUnitShe

Re: SDM compiles forever and doesn't start up

2014-12-04 Thread Thomas Broyer
Have you checked the memory usage of SDM? SDM requires a whole lot more memory than Compiler, so maybe you're swapping, or just start hitting the Xmx and the JVM spends more time in the GC than getting actual work done? On Thursday, December 4, 2014 11:14:42 AM UTC+1, Gábor Farkas wrote: > > Hel

Re: Hot update of external library in super dev mode

2014-12-04 Thread Thomas Broyer
On Thursday, December 4, 2014 3:17:42 PM UTC+1, Robert Hoffmann wrote: > > Hi, > > I have a question to the workflow I have adopted, and would be grateful > for your input. Are you running into the same problem or is there a better > way? > > So, I develop a number of projects (e.g. prj) that sh

Re: GWT 2.7.0 is here

2014-12-04 Thread James Wendel
I wanted to say thank you to the entire GWT team for this release. Incremental compiling for SDM has made it where we can use it at my company and it's seems great in my initial testing on it. Being able to reload a page instantly when there are no changes (or only a few seconds to reload whe

Hot update of external library in super dev mode

2014-12-04 Thread Robert Hoffmann
Hi, I have a question to the workflow I have adopted, and would be grateful for your input. Are you running into the same problem or is there a better way? So, I develop a number of projects (e.g. prj) that share a common library (e.g. lib) which I also develop. They are in independent maven pr

Re: Remote log error

2014-12-04 Thread Jens
Try a newer Jetty. https://bugs.eclipse.org/bugs/show_bug.cgi?id=376273 might be related. -- J. -- 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 google-we

Remote log error

2014-12-04 Thread David
I use GWT remote log (com.google.gwt.logging.server.RemoteLoggingServiceImpl) in GWT 2.7. Sometimes I got the following error when I used IPhone 5 to test my application. I have no clue how to resolve it. I appreciate your hint and your help! David Starting Jetty on port 888 [WARN] Excep

Re: 2.7.0 and module.nocache.js

2014-12-04 Thread Thomas Broyer
DevMode's new behavior of using SuperDevMode by default, the nocache.js has to contain the necessary bits to trigger "compile on load". When running DevMode with -nosuperDevMode though, there's a regression in 2.7: https://code.google.com/p/google-web-toolkit/issues/detail?id=9021 On Wednesday,

Re: MessagesWithLookup

2014-12-04 Thread Jens
> > I wanted to try and create such a thing myself, however most code of the > com.google.gwt.i18n.rebind is package private. > > So, any plans to add it (or allow a patch for that feature) ? > Can't you just generate a wrapper class and use delegation? That way you don't have to deal with i1

MessagesWithLookup

2014-12-04 Thread stuckagain
In a special case in my application I need the extra functionality of Messages but I need something like the behavior of ConstantsWithLookup. I understand that Messages do not provide a lookup functionality for performance reasons, however sometimes it would be useful to have something like Me

SDM compiles forever and doesn't start up

2014-12-04 Thread Gábor Farkas
Hello, I've just tried to update a quite large project to GWT 2.7.0 from 2.6.1. Compiling from maven seems to be faster by around 20% (it now takes around 60s on i7-4500u, ssd), but superdevmode just doesn't start up, it seems to compile forever (up to 10-15 minutes). I inspected it a little bit

Re: How to register Custom HTML Element as widget in GWT

2014-12-04 Thread Jens
Without creating java classes you could try using or -- J. -- 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 google-web-toolkit+unsubscr...@googlegro

How to register Custom HTML Element as widget in GWT

2014-12-04 Thread gaurav dudeja
Did someone have any idea how to register custom html element as GWT widget uiBinder and use them directly in place of using in HTMLPanel. For eg if i'm using Google Polymer in my mgwt project i have to use this as