I am not able to use dojo widgets in my open social gadget. Here is the steps i followed
1. I am using apache shinding in tomcat 6.0.29 in my local machine. Tomcat is running on default port 8080.
2. This is the gadget xml
</ModulePrefs>
<Content type="html">
<![CDATA[
<link rel="stylesheet" ....type="text/css"/>
<script type="text/javascript" src="path/to/local/dojo.js"></script>
<script>
function loader () {
dojo.require ("dijit.Editor");
dojo.addOnLoad(callback);
}
function callback () {
new dijit.Editor ({}, dojo.byId("editorNode"));
}
dojo.config.parseOnLoad = true;
dojo.config.dojoBlankHtmlUrl = '/blank.html';
dojo.addOnLoad(loader);
</script>
<div id="editorNode" class="tundra">Hello, xcc world!</div>
]]>
</Content>
</Module>
I am testing this gadget in the default samplecontainer of apache shindig. I tested in google chrome and i am getting the following error in the javascript console
Origin http://127.0.0.1:8080 is not allowed by Access-Control-Allow-Origin. Uncaught Error: Could not load 'dijit.Editor'; last tried '../dijit/Editor.js'