0

LiferayポータルのWebページで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