environment:
Win2000
Eclipse 3.0.1, fresh install, no other plugins, 7 org.eclipse.pde.*
MyEclipse 3.8.2
JDK 1.4.2 01
no app server
no exceptions in log
Create a test html file with the following syntax:
<html>
<head>
<SCRIPT language=”JavaScript1.2″ >
var test = document.myform.myinput1.value; // example
</SCRIPT>
</head>
<body>
<form name=”myform”>
<INPUT type=”text” name=”myinput1″ >
</form>
</body>
</html>
Problem:
When typing the example line, the MyEclipse code completion feature does not seem to be able to assist with finding the object “myinput1” when typing the (NS syntax):
var test = document.myform.
yet, it can find the object with the (MS syntax):
var test = document.all.
Questions:
Why is this?
Any plans to allow user config of MyEclipse JavaScript DOM parsing for the code completion feature?