January 2013
Intermediate to advanced
328 pages
7h 14m
English
The panelGrid component extends the JSF <h:panelGrid> component with support of colspan, the number of columns a cell should span, and rowspan, the number of rows a cell should span, and the theming ability.
A basic definition for 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 type="button" value="Save" icon="ui-icon-check" style="margin:0"/> </f:facet> ...
Read now
Unlock full access