Debugging GWT with Firebug

From Opentaps Wiki
Revision as of 18:33, 30 July 2009 by Sichen (talk | contribs) (New page: You can use the [http://www.getfirebug.com/ Firebug] add-on for Mozilla Firefox to debug your Google Web Toolkit (GWT)-based applications. First, installed firebug into your Firefox brows...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

You can use the Firebug add-on for Mozilla Firefox to debug your Google Web Toolkit (GWT)-based applications. First, installed firebug into your Firefox browser. Then, open it:

Firebug-open-firebug.png

and enable the console:

Firebug-enable-console.png

The console should now be active with messages from your GWT application. For example, the console log below shows the output for:

UtilUi.logDebug("Store loaded for: " + UtilUi.toString(this) + ", lastQueried = " + lastQueried, MODULE, "onStoreLoad");


Firebug-debugging-active.png