I have the following Facelets code with an update on the <p:growl>
component after the saving action.
But I have the following exception while rendering the page :
javax.servlet.ServletException: Cannot find component with expression ":principal:display" referenced from "mainForm:form1:j_idt27".
<ui:define id="principal" name="content">
<p:growl id="display" showDetail="true" sticky="false" />
<p:panel header="Gestion de projets">
<h:form id="form1">
<h:panelGrid columns="3">
<h:outputText value="Nom du projet: *" />
<p:inputText value="#{gestionProjetBean.nomProjet}"
required="true" label="Nom du projet" />
<p:commandButton value="Save"
actionListener="#{gestionProjetBean.creerProjet(gestionProjetBean.nomProjet)}"
update=":principal:display" />
</h:panelGrid>
</h:form>