I have created two Javascript webresources with name new_/Scripts/My.JSON2.js and new_/Script/My.RestOperations.js which contains namespace called MYTEST. And in the same place I created one html page to load when sitemap item is clicked, with name new_/Webpages/My.sitemapPage.htm. And I'm trying to call some JSON functions from JScript in html page which are present in "new_/Scripts/My.RestOperations.js" file under MYTEST namespace. In html page I added reference to JScript files as below:

<SCRIPT type=text/javscript src="../Scripts/My.RestOperations.js"></SCRIPT>
<SCRIPT type=text/javscript scr="../Scripts/My.JSON2.js"></SCRIPT>

<SCRIPT type=text/javscript>
function=pageOnLoad() {
MYTEST.retrieveMultiple(dataSet,filter,callBackSuccess,callBackError);
}
</SCRIPT>

But still I'm getting an error as:
'MYTEST' is undefined.

link|improve this question

67% accept rate
Also, either use the correct spelling of type=text/javascript or remove the attribute altogether. – Jon Adams Mar 1 at 22:14
feedback

1 Answer

You can access the of the parent window by using window.parent.

window.parent.MYTEST.retrieveMultiple(dataSet,filter,callBackSuccess,callBackError);

If you try to execute code in the webresource before the load of the parent window's javascript file, you'll have to also put in a try/catch block to handle the fact that the parent file hasn't been loaded.

try {
    var check = window.parent.MYTEST;
} catch (e) {
    setTimeout(function () { pageOnLoad(); }, 1000);
    return;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.