Hi,
1. It is better to use Debug scripts when you test an application. You switch to the debug scripts usign
- ScriptMode="Debug" for the ResourceManager
- set to the session HttpContext.Current.Session["Ext.Net.ScriptMode"] = ScriptMode.Debug;
- set it globally in the web.config -
<extnet scriptMode="Debug"/>
2. It is more convinience to use IE for debug javascript under VS. If debug is allowed in the IE, to activate debug please see
http://blogs.msdn.com/b/ie/archive/2...26/247912.aspx
http://www.jonathanboutelle.com/how-...ernet-explorer
In this case VS can intercept all js errors and switch to the IDE where you can set breakpoint, watch variables values, investigate Call Stack to trace exception way and etc
3. If you have js error and cannot understand the nature of that exception then post sample which reproduces the problem (or atleast function name and number line where exception is occured)