Skip to content

Instantly share code, notes, and snippets.

@gbougeard
Created May 1, 2012 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gbougeard/2568243 to your computer and use it in GitHub Desktop.
Save gbougeard/2568243 to your computer and use it in GitHub Desktop.
<h:form>
<h:panelGrid columns="3">
<h:outputLabel value="libellé" for="libFormation" />
<p:inputText id="libFormation"
value="#{myController.current.libFormation}"
title="libellé"
>
<p:ajax event="blur" update="msg_libFormation"/>
</p:inputText>
<p:message id="msg_libFormation" for="libFormation"/>
<h:outputLabel value="Code" for="codFormation" />
<p:inputText id="codFormation"
value="#{myController.current.codFormation}"
title="Code"
>
<p:ajax event="blur" update="msg_codFormation"/>
</p:inputText>
<p:message id="msg_codFormation" for="codFormation"/>
</h:panelGrid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment