There is one JavaScript web resource in CRM 2011 called new\_/Script/genericJScript.js
. Which contains some functions say, \_retrieveRecord()
and \_Context()
as below. And I need to call these methods from another JavaScript web resource called new\_/Script/testJScript.js
. How can we do this?
if (typeof (MyTest) == "undefined")
{
MYTEST = { __namespace: true };
}
MYTEST.RESTCALL = {
_Context: function () {
......
},
_retrieveRecord: function () {
......
},
};