在父联系表中,我有一个包含就业记录的网格。So, when grid is selected, the ribbon for employment appears.
当我单击网格中的记录时,在保存就业值后,我想刷新联系表。在保存就业事件时,尝试了以下所有属性:
window.parent.parent.location.reload(true), window.parent.location.reload(true)
这不起作用,因为对于父母来说,它将 url 作为就业实体的编辑。
所以,我尝试了:
window.opener.parent.document.crmForm(), window.opener.parent.document.all.crmForm()
这给了我一个javascript错误,因为对象ID为空。
你能帮我刷新保存就业表格的联系页面吗?