Passing parameters to JavaScript Web Resource function in Dynamics CRM
Introduction:
In this blog we will see how we can pass parameters to a JavaScript function where the function is generic and can be reused.
Implementation:
Let’s take an example where you would check if account number is present or not in the account field.
1. Create a JS function to check if account number is present in the Account field.
var alertDialogBox = {
accNumber : function(executionContext,schemaNameforAccNumber){
var formContext = executionContext.getFormContext();
var accountNumber = formContext.getAttribute(schemaNameforAccNumber).getValue()
alert("Account Number :" + accountNumber);
}
};
2. Add function to the Web Resource library in solution.
3. Adding it to the form of the Account entity to reflect the output on load of the page.
4. Checking for the result on load of Account.
Hope this helps …
Related posts:
Resolving SSL/TLS Secure Channel Trust Errors in Dynamics 365 Finance and Operations
How to change a Bill of material (BOM) item on a production order
Shopify Meets Dynamics 365 Finance and Operations: A Guide to Integration [Part 2]
Shopify Meets Dynamics 365 Finance and Operations: A Guide to Integration [Part 1]