1

我正在尝试将fancybox 嵌入到CRM2011 表单中以显示参考页面。问题是在兼容模式下内容似乎没有完全呈现。不幸的是,我无法控制 doctype 或 html 标签(为了符合 MS Dynamics)。

我意识到这可能甚至不符合 FancyBox 问题,但我只是希望你们可能有我可以开始寻找的地方。

这是我用来初始化的代码:

$.fancybox.open(
{
    href: 'https://myreferralpod.com/refapp/',
    title: 'Create Referral', // + name
    type: 'iframe',
    iframe: {preload: true},
    padding: 5,
    margin: [20,20,5,20],
    helpers : {
        overlay : {
            closeClick : false,
            showEarly  : false
        }
    },
    //autoResize : true,
    fitToView : true,
    width : '80%',
    height : '80%',
    openEffect : 'none',
    closeEffect : 'none',
    arrows: false
});

(抱歉,暂时不能发图)

以下是兼容模式下显示的内容: 兼容模式

这是在常规(所需) 常规模式下显示的内容

4

1 回答 1

0

<div class="container" id="page"...需要添加一个额外的 css 样式。尝试添加position:relative

这是在myreferralpod.com/refapp/页面内(不在 CRM 端)。

于 2012-10-24T19:50:40.840 回答