UmbrellaException for input string: ...px - only in Edge browser

2017-05-29 Thread Rowan Klein Gunnewiek
Hello, Only when i open my site in the edge browser it displays my design incorrectly. Also i get alot of UmbrellaExceptions with error on input string for different "px" values. This does not happen in any other browser. Does anyone know what might cause this? P.S first post here, so if i

Re: Got UmbrellaException when trying to show loading screen on async login processing using MaterialLoading

2016-12-09 Thread harshyadav
ave a little problem here, which I try to figure out why it is > happening. > > I use GWT Material Design in my project, and I just wanted to show a > loading screen while the login is being processed, but I get an > UmbrellaException, and the loading icon just spins there fore

Got UmbrellaException when trying to show loading screen on async login processing using MaterialLoading

2016-12-09 Thread Olar Andrei
Hello, I have a little problem here, which I try to figure out why it is happening. I use GWT Material Design in my project, and I just wanted to show a loading screen while the login is being processed, but I get an UmbrellaException, and the loading icon just spins there forever... If I

Re: [gwt-contrib] Serializing/Deobfuscating UmbrellaException

2014-07-11 Thread 'Goktug Gokdogan' via GWT Contributors
I don't think it is a good idea to depend on UmbrellaException from Core. The simple alternative is to use a custom UncaughtExceptionHandler to un-stack UmbrellaException and send as separate log entries. On Fri, Jul 11, 2014 at 6:16 AM, Jens jens.nehlme...@gmail.com wrote: Hi, In an app we

Get more info out of a client-side UmbrellaException

2011-10-11 Thread Alexander Orlov
Sometimes I get *UmbrellaExceptions* in production mode that I don't get in development mode. Most of the time it happens when I fire GWT requests very frequently when I e.g. select different fields quickly. *How do I get more info out of this Umbrella?* Any clues? -- You received this

Re: Get more info out of a client-side UmbrellaException

2011-10-11 Thread Guru
In Dev mode, select the UmbrellaExceptions, you will find the detailed stack trace in the details sections. On Oct 11, 4:32 pm, Alexander Orlov alexander.or...@loxal.net wrote: Sometimes I get *UmbrellaExceptions* in production mode that I don't get in development mode. Most of the time it

[gwt-contrib] Re: Make UmbrellaException a bit more convenient to read, and test it. (issue1532803)

2011-08-26 Thread cromwellian
lgtm http://gwt-code-reviews.appspot.com/1532803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Make UmbrellaException a bit more convenient to read, and test it. (issue1532803)

2011-08-26 Thread Ray Ryan
r10584 On Thu Aug 25 23:08:59 GMT-700 2011, cromwell...@google.comgt wrote: lgtm http://gwt-code-reviews.appspot.com/1532803/http://www.google.com/url?sa=Dq=http://gwt-code-reviews.appspot.com/1532803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10584 committed - Make UmbrellaException a bit more convenient to read, and test it....

2011-08-26 Thread codesite-noreply
Revision: 10584 Author: rj...@google.com Date: Fri Aug 26 08:45:52 2011 Log: Make UmbrellaException a bit more convenient to read, and test it. Review at http://gwt-code-reviews.appspot.com/1532803 Review by: cromwell...@google.com http://code.google.com/p/google-web-toolkit/source

[gwt-contrib] Re: Make UmbrellaException a bit more convenient to read, and test it. (issue1532803)

2011-08-25 Thread cromwellian
http://gwt-code-reviews.appspot.com/1532803/diff/1/user/src/com/google/web/bindery/event/shared/UmbrellaException.java File user/src/com/google/web/bindery/event/shared/UmbrellaException.java (right):

[gwt-contrib] Re: Make UmbrellaException a bit more convenient to read, and test it. (issue1532803)

2011-08-25 Thread rjrjr
http://gwt-code-reviews.appspot.com/1532803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Make UmbrellaException a bit more convenient to read, and test it. (issue1532803)

2011-08-25 Thread Ray Ryan
How's that? On Thu Aug 25 17:04:18 GMT-700 2011, cromwell...@google.comgt wrote:

Re: UmbrellaException

2011-04-21 Thread l.denardo
... Regards Lorenzo On Apr 20, 5:40 pm, tjmcc18 tjmc...@gmail.com wrote: When an unexpected error occurs on the client side, such as a NullPointerException, the result is that an UmbrellaException is thrown and that generally ends up being interpreted as a javascript error by the browser

UmbrellaException

2011-04-20 Thread tjmcc18
When an unexpected error occurs on the client side, such as a NullPointerException, the result is that an UmbrellaException is thrown and that generally ends up being interpreted as a javascript error by the browser. Those javascript errors are usually less than helpful in determining what

Re: UmbrellaException

2011-04-20 Thread SVR
=compiler.emulatedStack.recordFileNames value=true/ On Wed, Apr 20, 2011 at 11:40 AM, tjmcc18 tjmc...@gmail.com wrote: When an unexpected error occurs on the client side, such as a NullPointerException, the result is that an UmbrellaException is thrown and that generally ends up being interpreted as a javascript error

Error: uncaught exception: com.google.gwt.event.shared.UmbrellaException: One or more exceptions caught, see full set in UmbrellaException#getCauses

2011-03-16 Thread Mgr
In Mozilla browser. NetBean IDE 6.9 run the below code throws the exception Error: uncaught exception: com.google.gwt.event.shared.UmbrellaException: One or more exceptions caught, see full set in UmbrellaException#getCauses I have more problem when I develop the gwt application. I am

Re: Error: uncaught exception: com.google.gwt.event.shared.UmbrellaException: One or more exceptions caught, see full set in UmbrellaException#getCauses

2011-03-16 Thread Juan Pablo Gardella
Paste the complete stacktrace Juan 2011/3/16 Mgr gan.tan...@gmail.com In Mozilla browser. NetBean IDE 6.9 run the below code throws the exception Error: uncaught exception: com.google.gwt.event.shared.UmbrellaException: One or more exceptions caught, see full set in UmbrellaException

Re: UmbrellaException containing JavaScriptException

2011-01-01 Thread cmarsh...@avenue100.com
After writing code to catch the UmbrellaException and log it's stack trace this problem was caused by the PlaceController invoking the setWidget with a null widget. The code I wrote extending LayoutPanel did not check for this and invoked the LayoutPanel.add() method with the null widget

UmbrellaException containing JavaScriptException

2010-12-30 Thread cmarsh...@avenue100.com
. My first attempt at possible structure is resulting in an UmbrellaException. The structure we are trying, is to have a TabLayoutPanel that is essentially the top level of the UI for the portal. Then have individual GWT modules for each tab so that they can be easily developed independently