MSCRM2013模拟模态窗口

  由于Chrome不支持showModelDialog,若在Chrome中使用MSCRM2013,则无法使用模态窗口。

以下代码是参考MSCRM中分派、共享等功能的窗口,实现的模拟showModelDialog效果。

可将以下JS作为资源导入CRM:

if (typeof (XJS) != "undefined")
{
    alert("自定义JS冲突,未正常载入!");
}
else
{
    XJS =
    {
        //创建模拟对话框
        _CreateModalDialog: function (oUrl, oWidth, oHeight, oInnerHtml)
        {
            if (window.top.ModalDialogBackgroundDiv == undefined)   //防止重复创建
            {
                //背景
                var bg = top.document.createElement("div");
                bg.id = "ModalDialogBackgroundDiv";
                bg.className = "ms-crm-InlineDialogBackground";
                bg.style.position = "absolute";
                bg.style.width = "100%";
                bg.style.height = "100%";
                bg.style.top = "0px";
                bg.style.zIndex = 2010;
                bg.style.opacity = 0.5;
                bg.style.backgroundColor = "#808080";
                top.document.body.appendChild(bg);

                if (oUrl != null)
                {
                    //等待
                    var loading = top.document.createElement("div");
                    loading.id = "ModalDialogLoadingDiv";
                    loading.style.position = "absolute";
                    loading.style.width = oWidth + "px";
                    loading.style.height = oHeight + "px";
                    loading.style.left = "50%";
                    loading.style.top = "50%";
                    loading.style.marginLeft = "-" + (oWidth / 2).toString() + "px";
                    loading.style.marginTop = "-" + (oHeight / 2).toString() + "px";
                    loading.style.zIndex = 2030;
                    loading.style.backgroundColor = "#ffffff";
                    loading.innerHTML = "<table class=\"ms-crm-LoadingContainer\" style=\"width:100%;height:100%\">"
                                    + "<tr class=\"ms-crm-LoadingContainer\"><td style=\"vertical-align: middle\" align=\"center\">"
                                    + "<img id=\"DialogLoadingDivImg\" alt=\"\" src=\"/_imgs/AdvFind/progress.gif\"><br>正在加载..."
                                    + "</td></tr></table>";
                    top.document.body.appendChild(loading);

                    //显示iframe内容
                    var iframeDiv = top.document.createElement("div");
                    iframeDiv.id = "ModalDialogIframeDiv";
                    iframeDiv.className = "ms-crm-DialogChrome";
                    iframeDiv.style.position = "absolute";
                    iframeDiv.style.width = oWidth + "px";
                    iframeDiv.style.height = oHeight + "px";
                    iframeDiv.style.left = "50%";
                    iframeDiv.style.top = "50%";
                    iframeDiv.style.marginLeft = "-" + (oWidth / 2).toString() + "px";
                    iframeDiv.style.marginTop = "-" + (oHeight / 2).toString() + "px";
                    iframeDiv.style.zIndex = 2020;
                    iframeDiv.innerHTML = "<iframe src=\"\" id=\"ModalDialog_Iframe\" style=\"height: " + oHeight + "px; width: " + oWidth + "px; border: 0px;\"></iframe>"
                    top.document.body.appendChild(iframeDiv);
                    var iframe = top.document.getElementById("ModalDialog_Iframe");
                    if (iframe.attachEvent) //IE浏览器
                    {
                        iframe.attachEvent("onload", function () { top.ModalDialogLoadingDiv.style.display = "none"; });
                    }
                    else //非IE浏览器
                    {
                        iframe.onload = function () { top.ModalDialogLoadingDiv.style.display = "none"; };
                    }
                    iframe.src = oUrl;
                }
                else if (oInnerHtml != null)
                {
                    //显示div内容
                    var htmlDiv = top.document.createElement("div");
                    htmlDiv.id = "ModalDialogHtmlDiv";
                    htmlDiv.className = "ms-crm-DialogChrome";
                    htmlDiv.style.position = "absolute";
                    htmlDiv.style.width = oWidth + "px";
                    htmlDiv.style.height = oHeight + "px";
                    htmlDiv.style.left = "50%";
                    htmlDiv.style.top = "50%";
                    htmlDiv.style.marginLeft = "-" + (oWidth / 2).toString() + "px";
                    htmlDiv.style.marginTop = "-" + (oHeight / 2).toString() + "px";
                    htmlDiv.style.zIndex = 2040;
                    htmlDiv.style.backgroundColor = "#ffffff";
                    top.document.body.appendChild(htmlDiv);
                    htmlDiv.innerHTML = oInnerHtml;
                }
            }
        },

        //创建模拟对话框
        ShowIframeModalDialog: function (oUrl, oWidth, oHeight)
        {
            XJS._CreateModalDialog(oUrl, oWidth, oHeight, null);
        },

        //创建模拟对话框
        ShowHtmlModalDialog: function (oInnerHtml, oWidth, oHeight)
        {
            XJS._CreateModalDialog(null, oWidth, oHeight, oInnerHtml);
        },

        //关闭模拟对话框
        CloseModalDialog: function ()
        {
            if (window.top.ModalDialogBackgroundDiv != undefined)
                window.top.document.body.removeChild(window.top.ModalDialogBackgroundDiv);
            if (window.top.ModalDialogLoadingDiv != undefined)
                window.top.document.body.removeChild(window.top.ModalDialogLoadingDiv);
            if (window.top.ModalDialogIframeDiv != undefined)
                window.top.document.body.removeChild(window.top.ModalDialogIframeDiv);
            if (window.top.ModalDialogHtmlDiv != undefined)
                window.top.document.body.removeChild(window.top.ModalDialogHtmlDiv);
        },
    };
}
View Code

 

调用:XJS.ShowIframeModalDialog("http://www.cnblogs.com",400,300);

第一个参数是要调用的页面地址

第二个参数是显示的宽度(px)

第三个参数是显示的高度(px)

关闭:在显示的页面中调用top.XJS.CloseModalDialog(),在上面的例子中,由于www.cnbolgs.com不受我们控制,肯定是关不掉了。

或者可以完善一下代码,在显示的框右上角加个关闭按钮,我这里就不写了。

 

怎么传递参数?父窗口与iframe窗口的传参问题,就不说了吧。

(注意调用导入到CRM资源中的页面时,URL传参用data参数,其他参数会报错的,具体看SDK吧)

 

转载于:https://www.cnblogs.com/leidian/p/3981608.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值