Skip to content Skip to sidebar Skip to footer

Dynamics 365 V9 Web Resource Get Context

I used this article to open a popup window when clicking on a button in the Lead form. In the onclick event of a button in this popup window, I want to set the value of a field in

Solution 1:

You can use window.opener to do it.

window.opener.Xrm.Page.getAttribute('subject').getValue();

Post a Comment for "Dynamics 365 V9 Web Resource Get Context"