Re: Very slow debugging form IDEA

2016-09-23 Thread Paul Stockley
A lot of people outside of the GWT community are also complaining that debugging in Chrome is really slow these days. On Friday, September 23, 2016 at 4:54:15 AM UTC-4, Jens wrote: > > Oh and we don't use Java8 yet. We use a GWT version somewhere between 2.7 > and 2.8beta1. > > I think the iss

How to debug gwt chrome extension

2016-09-23 Thread David
I develop a chrome extension using GWT. It works fine except that I cannot debug it in super dev mode, which means I cannot use xsiframe linker. If I use xsiframe linker, I get "Couldn't load gwtchrome from Super Dev Mode server at http://192.168.1.120:9297. Please make sure this server is ready

Re: Very slow debugging form IDEA

2016-09-23 Thread Jens
Oh and we don't use Java8 yet. We use a GWT version somewhere between 2.7 and 2.8beta1. I think the issue is more Chrome related. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, s

Re: Very slow debugging form IDEA

2016-09-23 Thread Jens
Yeah its already for a while that its slow. No idea why, so I debug in Chrome. But Chrome DevTools have some issues as well (at least for me). With SourceMaps enabled it regularly hangs for a long time when reloading the page in Chrome. So I reload the page, while it recompiles I close DevTools

Re: Refresh of CellTable via data transmitted via WebSocket delayed

2016-09-23 Thread Thomas Broyer
On Friday, September 23, 2016 at 2:04:19 AM UTC+2, Kay Pac wrote: > > I have a somewhat complex problem related to a CellTable that updates > based on messages received over a WebSocket connection. The problem is as > follows: The table does not update in real-time, even though "setRowData" >

Very slow debugging form IDEA

2016-09-23 Thread Kirill Prazdnikov
Hi, our team is facing real issue with debugging last days. For some reason Chrome takes all CPU and JS executes very slowly if IDEA debugger is attached to Chrome JS execution. It might be many reasons: IDEA updated, Chrome updated, GWT updated, we have started using JsInteop and lambdas, e,t,c

Re: Mocking onResponseReceived response.getText()

2016-09-23 Thread David
You can refactor the onResponseReceived callback as a method in your top level class and expose it package private. Then you target it directly in a unittest, mocking both request and response objects. On Fri, Sep 23, 2016 at 8:46 AM Jonathan Cook wrote: > Hello, > > I wanted to know if it coul