| Javascript libs not resolved [message #229178] |
Wed, 18 March 2009 05:25  |
Frank Messages: 4 Registered: July 2009 |
Junior Member |
|
|
Hi,
I'm working under Eclipse Ganymede 3.4.2 and created a "Static Web
Project".
I've "added Javascript Support" by "rightClick-on-Project > Web
Development Tools"
Under ""rightClick-on-Project > Properties > JavaScript > JavaScript
Libraries > Source" I've added the two Google Gears js-Files gears_init.js
and js_utils.js. They show up in the "JavaScript Support"-area of the
project in "Script Explorer", which seems to be correct.
Afterwards I've created a HTML-file in WebContent named test.html an
copied some example code from Google into it. It starts with
<html>
<body>
<script type="text/javascript" src="../gears_init.js"></script>
<script type="text/javascript" src="../js_utils.js"></script>
<script type="text/javascript">
try {
detectPlatform();
} catch (e) {
document.write(e);
}
</script>
...
detectPlatform() is marked with red underline "The function
detectPlatform() is undefined", which is definitely wrong. detectPlatform
() is defined in js_utils.js. After exporting, everything works fine in
Tomcat. But why do I receive a lot of "The function xyz is undefined" and
"xyz cannot be resolved or is not a field" and why is autocompletion
turned off.
Seems to me, that I misunderstood the whole concept.
Any hints appreciated
Regards, Frank
|
|
|