web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

Passing parameters to JavaScript Web Resource function in Dynamics CRM

Community Member Profile Picture Community Member

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 â€¦

The post Passing parameters to JavaScript Web Resource function in Dynamics CRM appeared first on .

Comments

*This post is locked for comments