在自定义子表单上完成操作后,如何刷新 CRM Dynamics 5.0 中的父表单?

发布于 2024-09-30 22:18:46 字数 684 浏览 5 评论 0原文

我有一个名为“ISSUE”的家长表格。 此问题表单的表单功能区上有一个名为 IG 的按钮,可打开自定义 Html 页面。

现在,单击自定义表单上的“提交”按钮后,该表单将执行一些插入到 CRM 中的操作并直接关闭。现在我想在关闭子 HTML 页面时刷新父问题表单以反映我的插入内容。

以下是我在问题表单功能区中单击 IG 按钮时用于调用子表单的代码:

function popup()
{
    var url = './WebResources/irpc_/planner.html';

    var data =
    {
        issueGuid: Xrm.Page.data.entity.getId(),
        causeCodeGuid: Xrm.Page.data.entity.attributes.get("irpc_causecode").getValue()[0].id,
        riskClassificationId: Xrm.Page.data.entity.attributes.get("irpc_riskclassification").getValue()
    };

    window.showModalDialog(url , data, 'dialogHeight:480px;dialogWidth:1200px;');

}

感谢您的帮助。

谢谢

I have a parent form called ISSUE.
This Issue form has a button called IG on the Form Ribbon that opens custom Html Page.

Now after the Submit button is clicked on the Custom form that performs some Inserts into CRM and Closes directly. Now I want to refresh the parent ISSUE form on closing the child HTML Page to reflect my Inserts.

Here is the code that i used to call the Child Form on clicking IG Button from the Issue Form Ribbon:

function popup()
{
    var url = './WebResources/irpc_/planner.html';

    var data =
    {
        issueGuid: Xrm.Page.data.entity.getId(),
        causeCodeGuid: Xrm.Page.data.entity.attributes.get("irpc_causecode").getValue()[0].id,
        riskClassificationId: Xrm.Page.data.entity.attributes.get("irpc_riskclassification").getValue()
    };

    window.showModalDialog(url , data, 'dialogHeight:480px;dialogWidth:1200px;');

}

Appreciate your help.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眼眸印温柔 2024-10-07 22:18:46

您可以尝试:

window.location.href = window.location.protocol + "//" + window.location.host + window.location.pathname + window.location.search

这将输入相同的 URL 减去哈希/片段。我假设 CRM 5 仍然使用一个片段,如果您刚刚执行了 window.location.href = window.location.href,该片段会阻止页面刷新。

注意事项:

  1. 如果表单上有脏数据,您将收到脏数据警告。

You could try:

window.location.href = window.location.protocol + "//" + window.location.host + window.location.pathname + window.location.search

This will input the same URL minus the hash/fragment. I'm assuming CRM 5 still uses a fragment which would prevent the page from refreshing if you just did a window.location.href = window.location.href.

Caveats:

  1. If there is dirty data on the form, you're going to get a dirty data warning.
雄赳赳气昂昂 2024-10-07 22:18:46
 well, you can use the following line of code.

 window.location.reload(true);
 well, you can use the following line of code.

 window.location.reload(true);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文