导航

上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 30 下一页

2018年11月1日

摘要: CRM 中定义以下函数: windows.parent.functionname(){ //do somethion } IFrame 子页面调用 JS: windows.parent.functionname(); 简单 alert(); 可以执行,复杂函数提供跨域之类错误。 其它方法见此前另一文 阅读全文

posted @ 2018-11-01 09:14 yiyishuitian 阅读(193) 评论(0) 推荐(0) 编辑

摘要: 说白了就是一个IFrame页面,执行另一IFrame页面的函数。 var RefreshSelf = function () { App.gridpanel.store.load(); } 阅读全文

posted @ 2018-11-01 09:08 yiyishuitian 阅读(306) 评论(0) 推荐(0) 编辑

摘要: 思路是 : 1 创建一个字段“new_xxx”。 2 注册字段 OnChange 事件。 3 OnChange 事件 刷新 IFrame_B子页面。 4 IFrame_A 修改 父页面 “new_xxx”字段 5 “new_xxx”字段 触发 OnChange 事件刷新 IFrame_B子页面。 阅读全文

posted @ 2018-11-01 09:01 yiyishuitian 阅读(346) 评论(0) 推荐(0) 编辑

摘要: 当然,可以设置 new_xxxx 字段的OnChange 事件,这样就可以通过OnChange事件做更多的事情。 调用时需写入以下代码:fireOnChange 以激活字段OnChange事件。 阅读全文

posted @ 2018-11-01 08:54 yiyishuitian 阅读(280) 评论(0) 推荐(0) 编辑

摘要: CRM代码: var iframe = Xrm.Page.getControl("IFRAME_xxx").getObject(); iframe.contentWindow.RefreshSelf(); IFrame 代码: var RefreshSelf = function() { // do something } 阅读全文

posted @ 2018-11-01 08:49 yiyishuitian 阅读(185) 评论(0) 推荐(0) 编辑

摘要: 在CRM中刷新IFame: /// 刷新Iframe的内容,用于表单上刷新iframe里的内容 var iframe = Xrm.Page.getControl(name).getObject(); iframe.contentWindow.location.reload(); 阅读全文

posted @ 2018-11-01 08:46 yiyishuitian 阅读(291) 评论(0) 推荐(0) 编辑

2018年10月24日

摘要: 阅读全文

posted @ 2018-10-24 09:54 yiyishuitian 阅读(285) 评论(0) 推荐(0) 编辑

2018年9月19日

摘要: 阅读全文

posted @ 2018-09-19 08:54 yiyishuitian 阅读(356) 评论(0) 推荐(0) 编辑

2018年9月16日

摘要: https://docs.microsoft.com/zh-cn/previous-versions/dynamicscrm-2016/deployment-administrators-guide/hh699726%28v%3dcrm.8%29 365没有直接的安装包,365是从2016升级所得。 阅读全文

posted @ 2018-09-16 13:30 yiyishuitian 阅读(824) 评论(0) 推荐(0) 编辑

2018年9月7日

摘要: CRM插件注册一般有三种方式, 1 database 2 disk 3 GAC 如果注册到disk 应该在会在 C:\Program Files\Microsoft Dynamics CRM\Server\bin\assembly 文件夹下, 如果注册到database 可能会找不一,这里如果想查看 阅读全文

posted @ 2018-09-07 15:18 yiyishuitian 阅读(153) 评论(0) 推荐(0) 编辑

上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 30 下一页