I have a function mapped on Quick create formOnLoad event in Dynamics.
The script is :
var CompanyName = (function (){
return {
testFn : function(){
console.log("a");
}
}
})({});
The function mapped is : CompanyName.testFn
But it is unable to call.
This approach is working fine with other forms, but not for quickCreate
*This post is locked for comments