0

我在 Liferay Portal 网页中使用 js、jQuery 库,当我弹出内容时,内容信息会突出窗口。

如果我想要一个滚动条来设置弹出窗口内的内容,我应该怎么做?¿

这是我的代码...

function showpopup(id) {
    AUI().ready('aui-dialog','aui-dialog-iframe','liferay-portlet-url', function(A) {
        var url = Liferay.PortletURL.createRenderURL();
        url.setPortletId("56"); //  "Web Content Display" portlet ID
        url.setWindowState('pop_up');
        url.setParameter("_56_groupId", Liferay.ThemeDisplay.getScopeGroupIdOrLiveGroupId()); 
        url.setParameter("_56_articleId", id); // webcontent ID

        window.myDialog = new A.Dialog(
            {
                title: 'Web Content',
                height: 960,
                width: 1024,
                modal:true,
                centered: true,
            }
        ).plug(
            A.Plugin.DialogIframe,
            {
                uri: url.toString(),
                iframeCssClass: 'dialog-iframe'
            }
        ).render();
    });
}

和有问题的图像.. 在此处输入图像描述

4

1 回答 1

1

将此添加到您的 css 文件中:

.dialog-iframe{
    overflow-y: scroll;
}
于 2013-10-21T15:22:35.630 回答