Microsoft Dynamics CRM 365 calling an action via JavaScript asynchronously
问题 Is there a way to call an action via javascript without the use of third party scripts? I found this https://github.com/PaulNieuwelaar/processjs However, I cannot use third party libraries. UPDATE: Here is some sample code that demonstrates an asynchronous call to an action via JavaScript. A important point to remember is to make the last parameter of the open method of the request to true . req.open(consts.method.post, oDataEndPoint, true); // plugin public class RunAsync : CodeActivity {