ADF 弹出窗口未出现

发布于 2025-01-08 13:25:53 字数 1079 浏览 1 评论 0原文

我正在尝试找出 ADF,但遇到问题。 我正在尝试创建一个简单的对话框弹出窗口,但它拒绝出现。我已将它绑定到命令按钮以尝试强制它出现,但没有运气。

这是代码:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich" version="1.2"
version="2.0">
<jsp:directive.page contentType="text/html;charset=UTF-8"/>
<f:view>
    <af:document title="Manager">
        <af:popup id="popupDialog">
            <af:dialog title="Manager" id="dialog1" type="yesNoCancel">
                <af:panelGroupLayout layout="horizontal">
                    <af:outputText value="This is a test" />
                </af:panelGroupLayout>
            </af:dialog>
        </af:popup>
    </af:document>
    <af:commandButton text="click me" id="btn">
        <af:showPopupBehavior popupId="popupDialog" />
    </af:commandButton>
</f:view>
</jsp:root>

有人可以帮忙吗?

I'm trying to figure out ADF but having an issue.
I'm trying to create a simple dialog popup, but it refuses to appear. I've tied it to a command button to try to force it to appear, but without luck.

Here is the code:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich" version="1.2"
version="2.0">
<jsp:directive.page contentType="text/html;charset=UTF-8"/>
<f:view>
    <af:document title="Manager">
        <af:popup id="popupDialog">
            <af:dialog title="Manager" id="dialog1" type="yesNoCancel">
                <af:panelGroupLayout layout="horizontal">
                    <af:outputText value="This is a test" />
                </af:panelGroupLayout>
            </af:dialog>
        </af:popup>
    </af:document>
    <af:commandButton text="click me" id="btn">
        <af:showPopupBehavior popupId="popupDialog" />
    </af:commandButton>
</f:view>
</jsp:root>

Can anyone help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夏夜暖风 2025-01-15 13:25:53

你应该像下面这样写:

<af:showPopupBehavior popupid="popupDialog" triggerType="action" />

这样就可以了

You should write it like the following:

<af:showPopupBehavior popupid="popupDialog" triggerType="action" />

That will do the trick

沉溺在你眼里的海 2025-01-15 13:25:53

你的页面层次结构搞砸了。
尝试类似的方法:

<af:document title="untitled5.jsf" id="d1">
    <af:form id="f1">
        <af:popup id="popupDialog">
            <af:dialog title="Manager" id="dialog1" type="yesNoCancel">
                <af:panelGroupLayout layout="horizontal">
                    <af:outputText value="This is a test"/>
                </af:panelGroupLayout>
            </af:dialog>
        </af:popup>
        <af:commandButton text="click me" id="btn">
            <af:showPopupBehavior popupId="popupDialog"/>
        </af:commandButton>
    </af:form>
</af:document>   

Your page hierarchy is screwed up.
Try something like:

<af:document title="untitled5.jsf" id="d1">
    <af:form id="f1">
        <af:popup id="popupDialog">
            <af:dialog title="Manager" id="dialog1" type="yesNoCancel">
                <af:panelGroupLayout layout="horizontal">
                    <af:outputText value="This is a test"/>
                </af:panelGroupLayout>
            </af:dialog>
        </af:popup>
        <af:commandButton text="click me" id="btn">
            <af:showPopupBehavior popupId="popupDialog"/>
        </af:commandButton>
    </af:form>
</af:document>   
厌味 2025-01-15 13:25:53

我认为你需要将partialSubmit =“true”放在af:commandButton上

<af:commandButton text="click me" id="btn" partialSubmit="true">
        <af:showPopupBehavior popupId="popupDialog" />
    </af:commandButton>

i think u need to put partialSubmit="true" on af:commandButton

<af:commandButton text="click me" id="btn" partialSubmit="true">
        <af:showPopupBehavior popupId="popupDialog" />
    </af:commandButton>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文