By Robin Pietens (Dynamics 365 Consultant @ Capgemini)
For those that have not yet heard: Microsoft has decided to deprecate the use of Xrm.Page.
Microsoft did indicate their understanding that this feature is used a lot, so they will retain compatibility with it for quite some time. However, new functions should be written in a way that is as future-proof as possible right? For some reason I was unable to easilly find a nice overview of what we should change to deal with this deprecation, and I decided to do something about that.
So where we used to write:
function doSomething(){
var some = Xrm.Page.getAttribute("new_some").getValue();
var action = Xrm.Page.getAttribute("new_action").getValue();
console.log(some + " " + action);
}
We should now do something else, and write:
function doSomething(executionContext){
var formContext = executionContext.getFormContext(); // get formContext
// use formContext instead of Xrm.Page
var some = formContext.getAttribute("new_some").getValue();
var action = formContext.getAttribute("new_action").getValue();
console.log(some + " " + action);
}
The other thing to do is to check the box of ‘pass execution context as first parameter’ when setting up the function on the form. If you, like me, make parameters of just about anything, simply pass them with comma’s separated from the executioncontext. Then put everything except the executioncontext in the box as comma separated parameters that will be passed to the function:
And the function itself will look like this:
function doSomething(executionContext, firstparam, secondparam){
var formContext = executionContext.getFormContext(); // get formContext
var some = formContext.getAttribute(firstparam).getValue();
var action = formContext.getAttribute(secondparam).getValue();
console.log(some + " " + action);
}
Any new Scripts that you write should conform to the standard outlined in this blogpost. When making changes to existing libraries, it’s a good idea to take it into account as well. Talk the costs and benefits through with your customer, to keep them as upgrade-proof as possible!
If you want to stay up-to-date with features like this one, keep an eye out for new blogposts and follow us on LinkedIn.
For (hard to find) Microsoft references see: https://docs.microsoft.com/en-us/dynamics365/customer-engagement/developer/clientapi/clientapi-form-context
Dank Robin voor de duidelijke uitleg!