Primefaces p:diaolg组件不工作

Primefaces p:diaolg组件不工作,primefaces,Primefaces,我在创建index.xhtml时出错。我正在使用primefaces 3.4 在我的页面索引中,我将显示一个区域列表,当我单击“添加”按钮时,将出现一个对话框窗口。错误为: javax.faces.FacesException:找不到从“j_idt10”引用的标识符为“nZone”的组件 区域列表 区域列表 及 尝试使用update=“:nZone”引用它。有关更多信息,请参阅指向另一个问题的链接。我确实按照您所说的做了,现在我得到了这个异常:java.lang.IllegalArgum

我在创建index.xhtml时出错。我正在使用primefaces 3.4 在我的页面索引中,我将显示一个区域列表,当我单击“添加”按钮时,将出现一个对话框窗口。错误为: javax.faces.FacesException:找不到从“j_idt10”引用的标识符为“nZone”的组件


区域列表
区域列表




尝试使用
update=“:nZone”
引用它。有关更多信息,请参阅指向另一个问题的链接。

我确实按照您所说的做了,现在我得到了这个异常:java.lang.IllegalArgumentException::nZoneTry命名包含nZone对象的表单,并引用如下对象:
:formName:nZone
IllegalArgumentException?在定义
update=“:nZone:
的组件处?这个例外对我来说听起来很奇怪,我不确定它是否起源于那里
  <?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:p="http://primefaces.org/ui">

     <h:head>
        <title>Listes des zones</title>
        <link type="text/css" rel="stylesheet" href="dot-luv/theme.css"/>
    </h:head>
    <h:body>
        <p:layout fullPage="true">
            <p:layoutUnit position="left"  header="Atividades" resizable="true" closable="true" collapsible="true">
                <h:form prependId="false">
                    <p:commandLink value="Nouvelle Zone" actionListener="#{ZoneController.preparAddZone()}" update="nZone" oncomplete="dialogGerLivro.show()"/>
                </h:form>
                <h:outputLink value="#{facesContext.externalContext.requestContextPath}/j_spring_security_logout">
                    <h:outputText value="Sair"/>
                </h:outputLink>
            </p:layoutUnit>
            <p:layoutUnit position="center">
                <h1>Listes des zones</h1><br/>
                <br/><br/>
                <h:form prependId="false">
                    <p:dataTable id="table" var="zone" value="#{ZoneController.listZones}">
                        <p:column>
                            <f:facet name="header">
                                <h:outputText value="Zone"/>
                            </f:facet>
                            <h:outputText value="#{zone.nomzone}" />
                        </p:column>
                            <f:facet name="header">
                                <h:outputText value="Modifier"/>
                            </f:facet>
                        <p:commandButton actionListener="#{ZoneController.preparEditZone()}" value="Modifier" update="nZone" oncomplete="dialogGerLivro.show()"/>
                        <p:column>
                            <f:facet name="header">
                                <h:outputText value="Supprimer"/>
                            </f:facet>
                            <h:commandLink action="#{ZoneController.DeleteZone}" value="Supprimer"/>
                        </p:column>
                    </p:dataTable>
                </h:form>
            </p:layoutUnit>
        </p:layout>

        <p:dialog header="Ajouter Zone" widgetVar="dialogGerLivro"  resizable="false" modal="true" showEffect="slide" width="500">
            <h:form prependId="false">
                <h:panelGrid id="nZone" columns="2" style="margin-bottom:10px">

                    <h:outputLabel for="titulo" value="Título:" />
                    <h:inputText id="titulo" value="#{ZoneController.zone.nomzone}"/>

                    <p:commandButton update="tabele" oncomplete="dialogGerLivro.hide();" actionListener="#{ZoneController.SaveZone}" value="Insérer Zone"/>
                    <p:commandButton update="tabele" oncomplete="dialogGerLivro.hide();" actionListener="#{ZoneController.UpdateZone}" value="Modifier Zone"/>

                </h:panelGrid>
            </h:form>
        </p:dialog>
    </h:body>
</ht
<h:panelGrid id="nZone" columns="2" style="margin-bottom:10px">
<p:commandLink value="Nouvelle Zone" actionListener="#{ZoneController.preparAddZone()}" update="nZone" oncomplete="dialogGerLivro.show()"/>
<p:commandButton actionListener="#{ZoneController.preparEditZone()}" value="Modifier" update="nZone" oncomplete="dialogGerLivro.show()"/>