May 2015
Beginner to intermediate
412 pages
8h 44m
English
The panelGrid component extends the JSF's <h:panelGrid> component with the support of colspan, that is, the number of columns a cell should span, and rowspan, which is the number of rows a cell should span, and the theming ability. In this recipe, we will create panels with row and column span abilities.
A basic definition of the panel grid would be as follows:
<p:panelGrid columns="2"> <f:facet name="header">User Information</f:facet> <h:outputLabel for="firstname" value="First Name" /> <p:inputText id="firstname" value="" label="firstname" /> <h:outputLabel for="lastname" value="Last Name" /> <p:inputText id="lastname" value="" required="true" label="lastname"/> <f:facet name="footer"> <p:commandButton ...
Read now
Unlock full access