hi,
I want to use dojo, a JS framework, but with this code :
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html dir="ltr">
<head>
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/dojo/1.4/dijit/themes/tundra/tundra.css">
<style type="text/css">
body, html { font-family:helvetica,arial,sans-serif; font-size:90%; }
</style>
</head>
<body class="tundra ">
<div id="showMe" style="padding: 10px;">
click here to see how it works
</div>
</body>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/dojo/1.4/dojo/dojo.xd.js"
djConfig="parseOnLoad: true">
</script>
<script>
dojo.addOnLoad(function() {
dojo.query("#showMe").onclick(function(e) {
var node = e.target;
var a = dojo.anim(node, {
backgroundColor: "#363636",
color: "#f7f7f7"
},
1000);
dojo.connect(a, "onEnd", function() {
dojo.anim(node, {
color: "#363636"
},
null, null, function() {
node.innerHTML = "wow, that was easy!";
dojo.anim(node, {
color: "white"
});
});
});
});
});
</script>
<!-- NOTE: the following script tag is not intended for usage in real
world!! it is part of the CodeGlass and you should just remove it when
you use the code -->
<script type="text/javascript">
dojo.addOnLoad(function() {
if (window.pub) {
window.pub();
}
});
</script>
</html>
I have no completion, I mean that if I enter "dojo." inside the JS tag, I have no completion, with eclipse aptana, or netbeans, or intelliJ.
Do you know a way (which editor, which method) to have the completion from the imported dojo ".js" files?
regards,
olivier
|