Dynamics 356 v9 - use executionContext.getFormContext() with HTML web resource

前端 未结 1 340
长情又很酷
长情又很酷 2021-01-18 19:05

Any ideas how we can we use executionContext.getFormContext() with an HTML web resource? only method that seems to work is parent.Xrm.Page which is

相关标签:
1条回答
  • 2021-01-18 19:18

    We are still using parent.Xrm.Page and parent.Xrm.Utility, since the replacement is not yet announced.

    You should plan to use the new client APIs mentioned in the Replacement Client API column instead of the deprecated ones. The deprecated client APIs will continue to be available and supported until they are officially removed from a future major release of Dynamics 365.

    Deprecated Client API:
    parent.Xrm

    Replacement Client API:
    NA

    Comments:
    Earlier: An HTML web resource may interact with the Xrm.Page or Xrm.Utility objects within the form by using parent.Xrm.Page or parent.Xrm.Utility.
    Now: parent.Xrm.* will work if the HTML web resource is loaded in a form container. For other places, such as loading an HTML web resource as part of the SiteMap, parent.Xrm.* won’t work.

    Update:

    Latest MS documentation says:

    Although Xrm.Page is deprecated, parent.Xrm.Page will continue to work in case of HTML web resources embedded in forms as this is the only way to access the form context from the HTML web resource.

    0 讨论(0)
提交回复
热议问题