How to setup debug environment for extjs - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T19:53:21Z http://stackoverflow.com/feeds/question/697038 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/697038/how-to-setup-debug-environment-for-extjs 0 How to setup debug environment for extjs unknown (yahoo) 2009-03-30T12:45:45Z 2009-03-30T16:26:03Z <p>I am using Eclipse EE, and tomcat for a webwork, extjs, hibernate spring application. For spring and hibernate staff, I have remote application debugging settings configured. So I make debug. But for extjs, I have installed firebugs in firefox browser in my ubuntu machine, but I still do not know how to catch break point to see how to trace javascript code. </p> http://stackoverflow.com/questions/697038/how-to-setup-debug-environment-for-extjs/697936#697936 1 Answer by Julien for How to setup debug environment for extjs Julien 2009-03-30T16:26:03Z 2009-03-30T16:26:03Z <p>In Firebug, go to the script tab. On the top, you can see:</p> <pre><code>Inspect | all | &lt;filename&gt; </code></pre> <p>Click on to choose the file that contain the javascript you want to track. Once you have selected your file, click on a line number to put a brea kpoint (a big red dot will appear).</p> <p>You can put several break points in different files. The break point will not disappear if you refresh the page (F5).</p> <p>This <a href="http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging" rel="nofollow">tutorial</a> should help you as well.</p>