为什么我的不工作?

发布于 2024-11-16 02:08:06 字数 630 浏览 3 评论 0原文

我有以下代码:

<a4j:commandButton value="Adicionar BOM"
    onclick="#{rich:component('addBomModal')}.show()">
    <a4j:ajax event="click" immediate="true"
        oncomplete="Richfaces.showModalPanel('addBomModal')"
    render="addBomModal" />
</a4j:commandButton>

并且

<h:form>
    <rich:popupPanel id="popup" modal="true" resizeable="true"
        onmaskclick="#{rich:component('popup')}.hide()">
        // rest of popupPanel
    </rich:popupPanel>
</h:form>

页面已呈现,但当我单击按钮时没有任何反应。

如何解决这个问题?

提前致谢, 格鲁德维希

I have the following code:

<a4j:commandButton value="Adicionar BOM"
    onclick="#{rich:component('addBomModal')}.show()">
    <a4j:ajax event="click" immediate="true"
        oncomplete="Richfaces.showModalPanel('addBomModal')"
    render="addBomModal" />
</a4j:commandButton>

and

<h:form>
    <rich:popupPanel id="popup" modal="true" resizeable="true"
        onmaskclick="#{rich:component('popup')}.hide()">
        // rest of popupPanel
    </rich:popupPanel>
</h:form>

The page is rendered but nothing happens when I click the button.

How can this be solved?

Thanks in advance,
gtludwig

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

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

发布评论

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

评论(1

情何以堪。 2024-11-23 02:08:06

你发生的事情太多了。您首先在 onclick(按钮)中打开弹出窗口,然后通过旧 API 在 oncomplete 中再次打开它(我不确定它是否已迁移到 RichFaces 4)。您所需要的只是 onclick 中的内容,不需要 a4j:ajax。

You have too many things going on. You first open the pop-up in onclick (button) and then open it again in oncomplete via older API (I'm not sure it was migrated to RichFaces 4). All you need is what you have in onclick, you don't need a4j:ajax.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文