Eclipse 3.4 Ganymede Javascript Validation Issue - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T11:31:08Zhttp://stackoverflow.com/feeds/question/261045http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/261045/eclipse-3-4-ganymede-javascript-validation-issue5Eclipse 3.4 Ganymede Javascript Validation IssueNelson LaQuet2008-11-04T06:11:23Z2009-10-05T09:25:06Z
<p>I just upgraded to Eclipse 3.4 for the second time and I think its for good now. The first time (right when it was released) was too buggy for me to stomach (mainly the PDT 2.0 plug-in); but now it seems to be all worked out.</p>
<p>My problem is the Javascript validator. If I define a class in one JS file in my project, then try to use it in another, it tells me that the type is undefined. This is really annoying as some of my scripts are littered with red squigglys.</p>
<p>Another problem is that this code:</p>
<pre><code>var m_dialogFrame = document.getElementById(m_dialogId);
</code></pre>
<p>Makes a yellow squiggle saying "Type mismatch: cannot convert from Element to ___m_dialogBody5" I can fix it by adding</p>
<pre><code> /**
* @type Element
*/
</code></pre>
<p>Before it, but that, also, will be messy.</p>
<p>Also, both:</p>
<pre><code>new XMLHttpRequest();
</code></pre>
<p>And</p>
<pre><code>new ActiveXObject("Microsoft.XMLHTTP");
</code></pre>
<p>Get red squiggles saying "x cannot be resolved to a type"</p>
<p>The last problem is with:</p>
<p>if (m_options.width != "auto")</p>
<p>Gets a red squiggly because: "The operator != is undefined for the argument type(s) Number, String"</p>
<p>How can I fix these issues, or just scrap the entire Javascript validation tool? BTW: it looks frikin awesome if I can get it to work.</p>
http://stackoverflow.com/questions/261045/eclipse-3-4-ganymede-javascript-validation-issue/261760#2617604Answer by insin for Eclipse 3.4 Ganymede Javascript Validation Issueinsin2008-11-04T12:40:34Z2008-11-04T12:40:34Z<p>Unfortunately, you might just have to scrap the JavaScript validation.</p>
<p>In my experience, the JavaScript tools which come bundled with Eclipse 3.4 have a hard time... well, <em>understanding</em> JavaScript at all, generating bogus warnings and errors as a result.</p>
<p>For example, the common practice of using an <code>Object</code> as a poor man's namespace causes it to get completely lost. Here's <a href="http://www.jonathanbuchanan.plus.com/images/eclipsejs.png" rel="nofollow">a screenshot of the kind of mess it makes</a> when trying to understand <a href="http://code.google.com/p/js-forms/source/browse/trunk/time.js" rel="nofollow">this JavaScript file</a> - note the useless outline view and the spurious (and incorrect) warnings and errors (including not seeming to understand than <code>String.split</code> returns an <code>Array</code>).</p>
http://stackoverflow.com/questions/261045/eclipse-3-4-ganymede-javascript-validation-issue/495688#4956881Answer by Susanne Glaser for Eclipse 3.4 Ganymede Javascript Validation IssueSusanne Glaser2009-01-30T14:35:51Z2009-01-30T14:35:51Z<p>Sorry to add this as answer, but I'm not yet allowed to put in comments:</p>
<p>Same problem here. Turned off JavaScript Validation completely - still showing validation errors. Set validation to Warning - Still showing errors even after a clean. Even a restart of Eclipse in between did not help (which worked for my tomcat installation). </p>
<p>Using WTP 3.0.3 (as suggested at some other forum) and higher causes other problems with my projects (Facet Java 5.0 not supported by Tomcat 5.5 - funny, up to WTP 3.0.3 it did :-( And I have no means of updating to Tomcat 6 - due to restrictions by our hoster.</p>
<p>Currently I just disable type JavaScript Problems and JSP Problems in the Problems filter view for errors and warnings (DropDown Menu - Configure Content | Types). Not a final solution, but it keeps me from getting really annoyed with Ganymede / WTP.</p>
http://stackoverflow.com/questions/261045/eclipse-3-4-ganymede-javascript-validation-issue/706930#7069301Answer by idefaye for Eclipse 3.4 Ganymede Javascript Validation Issueidefaye2009-04-01T19:01:28Z2009-04-01T19:19:07Z<p>After hours of looking around I have found how to definetly remove JS validation.</p>
<p>This means editing your .project file, so back it up before just in case.</p>
<ul>
<li>Close Eclipse</li>
<li>Open your .project file</li>
<li>look for the following line : <nature>org.eclipse.wst.jsdt.core.jsNature</nature></li>
<li>delete it</li>
<li>save your file and start Eclipse</li>
</ul>
<p>There no more red or yellow squibble all over the place... but no more js validation.</p>
<p>If anyone knows how to do it properly without editing .project file please share.</p>
http://stackoverflow.com/questions/261045/eclipse-3-4-ganymede-javascript-validation-issue/786432#7864320Answer by Sorin Mocanu for Eclipse 3.4 Ganymede Javascript Validation IssueSorin Mocanu2009-04-24T15:48:27Z2009-04-24T15:48:27Z<p>Apparently to fully disable the validation you should also disable "Report problems as you type" under JavaScript -> Editor.</p>
http://stackoverflow.com/questions/261045/eclipse-3-4-ganymede-javascript-validation-issue/1256336#12563362Answer by Krishna for Eclipse 3.4 Ganymede Javascript Validation IssueKrishna2009-08-10T18:06:36Z2009-08-10T18:06:36Z<p>Looks like this problem is due to the default browser for Eclipse not having the required libraries.</p>
<p>Try below steps to add the required library:
Project -> Properties -> JavaScript -> JavaScript Libraries -> Libraries(tab) -> Add Runtime Library -> select 'Internet Explorer Library'</p>
<p>This should resolve the issue. It did for me.</p>
http://stackoverflow.com/questions/261045/eclipse-3-4-ganymede-javascript-validation-issue/1285430#12854300Answer by AhmetC for Eclipse 3.4 Ganymede Javascript Validation IssueAhmetC2009-08-16T21:51:28Z2009-08-16T21:51:28Z<p>Thanks a lot Krishna. Adding runtime library fixed it and removed the annoying yellow and red marks.</p>
http://stackoverflow.com/questions/261045/eclipse-3-4-ganymede-javascript-validation-issue/1292800#12928000Answer by unknown (google) for Eclipse 3.4 Ganymede Javascript Validation Issueunknown (google)2009-08-18T09:18:51Z2009-08-18T09:18:51Z<p>Thanks a lot Krishna</p>
http://stackoverflow.com/questions/261045/eclipse-3-4-ganymede-javascript-validation-issue/1519022#15190220Answer by jegan for Eclipse 3.4 Ganymede Javascript Validation Issuejegan2009-10-05T09:25:06Z2009-10-05T09:25:06Z<p>Thanks to Krishna. Helped to figured out the XMLHttpRequest cannot be resolved issue.</p>