autoCompletecompleteMethod 在对话框中不起作用

发布于 2024-12-02 12:54:03 字数 673 浏览 1 评论 0原文

我写了这段代码:

<p:dialog header="Bolletta" width="800" height="600">
      <h:form id="newBillForm" >

            <p:panel header="Dati fiscali">

                <h:panelGrid columns="4">

                    <h:outputLabel value="Cliente *: " for="customer"/>
                    <p:autoComplete id="customer" value="#{billController.customerString}" completeMethod="#{customerController.autoComplete}" required="true"/>

                </h:panelGrid>

            </p:panel>
      </h:form>
</p:dialog>

如果我将表单(及其所有内容)放在对话框之外,completeMethod 工作正常,但在对话框内它不起作用!

知道怎么做吗?

I wrote this code:

<p:dialog header="Bolletta" width="800" height="600">
      <h:form id="newBillForm" >

            <p:panel header="Dati fiscali">

                <h:panelGrid columns="4">

                    <h:outputLabel value="Cliente *: " for="customer"/>
                    <p:autoComplete id="customer" value="#{billController.customerString}" completeMethod="#{customerController.autoComplete}" required="true"/>

                </h:panelGrid>

            </p:panel>
      </h:form>
</p:dialog>

If i put the form (and all its content) outside the dialog the completeMethod works fine, but inside the dialog it doesn't work!

Any idea how to do it?

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

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

发布评论

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

评论(1

温柔戏命师 2024-12-09 12:54:03

这可能有许多可能的原因,常见的原因是嵌套 组件或在输入或其评估 的父级之一上使用 rendered 属性>false 表单提交期间。有关它们的详细概述,请检查 commandButton/commandLink/ajax action/listener method not invoked或输入值未更新

This can have many possible causes, the common ones being nesting <h:form> components or using a rendered attribute on the input or one of its parents which evaluated false during form submit. For a detailed overview of them all, check commandButton/commandLink/ajax action/listener method not invoked or input value not updated

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