The h:panelGrid component closely aligns with the functionality of the ice:panelGrid component.
| Woodstock | ICEfaces | Comments |
| Common Attributes | ||
| bgcolor | bgcolor | - |
| binding | binding | - |
| border | border | - |
| cellpadding | cellpadding | - |
| cellspacing | cellspacing | - |
| columnClasses | columnClasses | - |
| columns | columns | - |
| dir | dir | - |
| footerClass | footerClass | - |
| frame | frame | - |
| headerClass | headerClass | - |
| id | id | - |
| lang | lang | - |
| onclick | onclick | - |
| ondblclick | ondblclick | - |
| onkeydown | onkeydown | - |
| onkeypress | onkeypress | - |
| onkeyup | onkeyup | - |
| onmousedown | onmousedown | - |
| onmousemove | onmousemove | - |
| onmouseout | onmouseout | - |
| onmouseover | onmouseover | - |
| onmouseup | onmouseup | - |
| rendered | rendered | - |
| rowClasses | rowClasses | - |
| rules | rules | - |
| style | style | - |
| styleClass | styleClass | - |
| summary | summary | - |
| title | title | - |
| width | width | - |
| Similar Attributes | ||
| Unique Attributes | ||
| captionClass | - | - |
| captionStyle | - | - |
| - | renderedOnUserRole | - |
| - | visible | - |
<h:panelGrid columns="2">
<h:panelGroup>
<h:outputText value="foo" />
</h:panelGroup>
<h:panelGroup>
<h:outputText value="bar" />
</h:panelGroup>
</h:panelGrid>
<ice:panelGrid columns="2">
<ice:panelGroup>
<ice:outputText value="foo" />
</ice:panelGroup>
<ice:panelGroup>
<ice:outputText value="bar" />
</ice:panelGroup>
</ice:panelGrid>