4

Hello all I am using smart gwt 2.3 pro version with Mozilla on windows xp system. I made Test Application on it & it is running successfully. Now I want to use developer console for this application. I gwt.xml coding is like below.

<inherits name="com.smartgwt.tools.SmartGwtTools"/>

Now After compiling and running it I am writing javascript:isc.showConsole() to my browser. But is it doing nothing. I am not getting what to do else for developer console. Thanks in advance

Sanjay Jain
  • 3,518
  • 8
  • 59
  • 93
  • Easiest way is to put a bookmark in your FireFox toolbar and so all you have to do is click on it. –  Jan 21 '13 at 13:39

2 Answers2

4

One thing to double check, did you put the javascript:isc.showConsole() in the address bar of the window where your GWT app was running?

You need to replace the URL of your app with javascript:isc.showConsole() and hit enter.

Everett Toews
  • 10,337
  • 10
  • 44
  • 45
2

Since you're running it from GWT code, I would suggest you to use the wrapper

SC.showConsole();

If all the inherits are in place, that should work

Carlos Tasada
  • 4,438
  • 1
  • 23
  • 26