Re: Random (and unwanted) PopupPanel in GWT 2.7

2014-12-08 Thread Robert J. Carr
Sorry this has taken a while to respond, but I just tested again with your recommendation and it didn't help. I agree that I think it's related to the logging, but I'm not sure what to do. To make things worse, as I said, it is consistent between linux and mac builds. Here's what I have in my

Random (and unwanted) PopupPanel in GWT 2.7

2014-12-05 Thread rjcarr
I recently updated to GWT 2.7 on a project that's been using GWT since the beginning and everything was fine. I develop on a Mac and I didn't notice any problems. However, there's a nightly build that happens on Linux (RHEL) and checking there when I start my GWT web app a random PopupPanel

Re: Random (and unwanted) PopupPanel in GWT 2.7

2014-12-05 Thread Nicolas Weeger
Hello. Random guess, are you using logging? The panel looks like the one on http://www.gwtproject.org/doc/latest/DevGuideLogging.html#Building_Running_the_Logging_Example Kind regards Nicolas Le vendredi 5 décembre 2014 18:59:12, rjcarr a écrit : I recently updated to GWT 2.7 on a

Re: Random (and unwanted) PopupPanel in GWT 2.7

2014-12-05 Thread Robert J. Carr
Thanks for the lead, yeah, I am using logging. But I thought I had disabled it all. Any idea which logging this is? I recall having to disable a logger or two when upgrading to 2.7. And why would this only show up on a Linux build? Thanks again! On Friday, December 5, 2014, Nicolas Weeger

Re: Random (and unwanted) PopupPanel in GWT 2.7

2014-12-05 Thread Jens
The property gwt.logging.popupHandler does not exist anymore in GWT 2.7. If you don't want that popup you must disable the HasWidgetsHandler: set-property name=gwt.logging.hasWidgetsHandler value=DISABLED / See:

Re: Random (and unwanted) PopupPanel in GWT 2.7

2014-12-05 Thread Robert J. Carr
OK, thanks, I'll give it a try. I read that the popup handler doesn't exist anymore and that's why I removed the config line. If it's not in 2.7 then why is it showing up in my linux build? I just checked and I don't have the popupHandler enabled but I do have logging enabled in general as well