在自定义子表单上完成操作后,如何刷新 CRM Dynamics 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试:
这将输入相同的 URL 减去哈希/片段。我假设 CRM 5 仍然使用一个片段,如果您刚刚执行了 window.location.href = window.location.href,该片段会阻止页面刷新。
注意事项:
You could try:
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: