如何将html文件加载到XPage中的Dojo对话框中

时间:2012-04-12 22:59:47

标签: javascript dojo xpages

我目前正在使用ExtLib的autoLoad功能与Ext.Window和Ext.tabPanel相结合,将一个网页打开到一个弹出对话框中。如何在XPage中使用dojo实现这一目标?

这是我想要实现的目标:

<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core" xmlns:xe="http://www.ibm.com/xsp/coreex">
    <xp:button value="Label" id="button1">
        <xp:eventHandler event="onclick" submit="true"
            refreshMode="partial" refreshId="dialog1" execMode="partial">
            <xp:this.action><![CDATA[#{javascript:getComponent("dialog1").show();}]]></xp:this.action>
        </xp:eventHandler>
    </xp:button>
    <xe:dialog id="dialog1" href="http://www.google.com" style="width: 400px; height: 400px;">
    </xe:dialog>
</xp:view>

1 个答案:

答案 0 :(得分:4)

“Dojo”对话框具有您设置为要加载的页面的URL的href属性。 documentation在标题“External Dialog content using HREF attribute”下解释了这一点。

您需要的第一个3 hits链接。