java – autoComplete completeMethod在对话框中不起作用

我写了这段代码:

<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工作正常,但在对话框中它不起作用!

知道怎么做吗?

最佳答案 这可能有许多可能的原因,常见的是嵌套< h:form>组件或在输入或其父项之一上使用呈现的属性,在表单提交期间评估为false.有关它们的详细概述,请查看
commandButton/commandLink/ajax action/listener method not invoked or input value not updated

点赞