CRM iFrame 关联视图记录计数 MS Dynamics

发布于 2024-10-31 08:04:08 字数 431 浏览 0 评论 0原文

我有一个带有显示关联实体的 iFrame 的 crmForm。我想验证当用户保存父 crmform 时,iFrame 中的关联视图是否有记录。使用javascript,如何在iFrame中找到crmGrid的记录计数。

我最接近的是

var frameDoc = document.getElementById('IFrame_contacts').contentWindow.document;
var recordcount = frameDoc.all['crmGrid'].innergrid.Allrecords.lenght;

,这只是给了我一个 innergrid not find 错误。

谢谢 奥利弗

I have a crmForm with an iFrame that displays an associeted Entity. I want to validate that the associated view in the iFrame has records when the user saves the parent crmform. Using javascript, how can I find the record count of the crmGrid in the iFrame.

The closest I come is

var frameDoc = document.getElementById('IFrame_contacts').contentWindow.document;
var recordcount = frameDoc.all['crmGrid'].innergrid.Allrecords.lenght;

That just gives me an innergrid not found error.

Thanks
Oliver

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

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

发布评论

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

评论(1

诠释孤独 2024-11-07 08:04:08

你很接近。您想要 var recordcount = frameDoc.getElementById("crmGrid").InnerGrid.SelectedRecords.length;

You were close. You want var recordcount = frameDoc.getElementById("crmGrid").InnerGrid.SelectedRecords.length;

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