How to setup debug environment for extjs - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T19:53:21Zhttp://stackoverflow.com/feeds/question/697038http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/697038/how-to-setup-debug-environment-for-extjs0How to setup debug environment for extjsunknown (yahoo)2009-03-30T12:45:45Z2009-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#6979361Answer by Julien for How to setup debug environment for extjsJulien2009-03-30T16:26:03Z2009-03-30T16:26:03Z<p>In Firebug, go to the script tab. On the top, you can see:</p>
<pre><code>Inspect | all | <filename>
</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>