Re: How to debug GWT application on Eclipse

2016-06-29 Thread Velusamy Velu
I was always using the un-intuitive CTRL-P in Chrome, Firefox, and Opera. CTRL-O is more logical. First I right clicked on the application and selected "Inspect Element" then did the CTRL-P or CTRL-O. On Friday, June 24, 2016 at 7:08:40 AM UTC-4, Frank wrote: > > Didn't now about that CTRL+O thi

Re: How to debug GWT application on Eclipse

2016-06-24 Thread Frank
Didn't now about that CTRL+O thing. Thanks :-) -- 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, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this grou

Re: How to debug GWT application on Eclipse

2016-06-24 Thread Pierre Mineaud
Oh great, could be enough to debug in chrome debugger, but I guess it will be more confortable to debug directly in eclipse. Thanks for all the infos ;) -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiv

Re: How to debug GWT application on Eclipse

2016-06-24 Thread Thomas Broyer
On Friday, June 24, 2016 at 11:39:22 AM UTC+2, Jens wrote: > > - Then in the tree view open 'top', open {nameOfYourApp}, open >> 127.0.0.1:9876, open "sourcemaps/{nameOfYourApp}. >> - Now you will find your original java source. If you open a java file >> here you can set a breakpoint in Chrome

Re: How to debug GWT application on Eclipse

2016-06-24 Thread Jens
> > - Then in the tree view open 'top', open {nameOfYourApp}, open > 127.0.0.1:9876, open "sourcemaps/{nameOfYourApp}. > - Now you will find your original java source. If you open a java file > here you can set a breakpoint in Chrome... > Alternatively, on Mac, just hit CMD + O (open) and enter

Re: How to debug GWT application on Eclipse

2016-06-24 Thread Frank
Like Thomas said. Don't use DevMode but keep using SuperDevMode. The easiest way to do debugging is to use Chrome as a browser. - When running your app in SuperDevMode press F12 in Chrome. - This will show the Chrome developer tools window - In this panel select the 'sources' tab - Then in the tr

Re: How to debug GWT application on Eclipse

2016-06-24 Thread Pierre Mineaud
Wow... thanks a lot Thomas for your fast and good reply ! This isn't really clear in the doc, but this clear for me now. And after followed your linked, it works like a charm. Thanks again :) -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To uns

Re: How to debug GWT application on Eclipse

2016-06-24 Thread Thomas Broyer
"Classic" Dev Mode (or, as most people call it, "legacy" devmode) is deprecated and scheduled for deletion after the 2.8 release. It only works in Internet Explorer (not Edge, but works in IE11), and in really old versions of Firefox and Chrome/Chromium. The way forward is "Super Dev Mode", wher

How to debug GWT application on Eclipse

2016-06-24 Thread Pierre Mineaud
Hi GWT community. I am trying GWT since yesterday, and I'm following the first app tutorial on gwt official. I'm at the debugging section and i can't figure it out to debug my code in eclipse. I followed each line of this tutorial, so