Skip to content

Instantly share code, notes, and snippets.

@ova2
Created August 17, 2012 15:18
Show Gist options
  • Save ova2/3379782 to your computer and use it in GitHub Desktop.
Save ova2/3379782 to your computer and use it in GitHub Desktop.
Context for Focus is ignored
<p:messages/>
<p:focus context="secondGrid"/>
<h:panelGrid columns="2" style="margin-bottom:10px;">
<h:outputLabel value="Dummy *"/>
<p:inputText required="true" label="Dummy"/>
</h:panelGrid>
<h:panelGrid id="secondGrid" columns="2">
<h:outputLabel for="firstname" value="Firstname *"/>
<p:inputText id="firstname" required="true" label="Firstname"/>
<h:outputLabel for="surname" value="Surname *"/>
<p:inputText id="surname" required="true" label="Surname"/>
</h:panelGrid>
<p:commandButton value="Submit" update="@form" style="margin-top:10px;"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment