The webuijsf:body component closely aligns with the functionality of the ice:outputBody component.
| Woodstock | ICEfaces | Comments |
| Common Attributes | ||
| binding | binding | - |
| id | id | - |
| imageURL | background | - |
| rendered | rendered | - |
| style | style | - |
| styleClass | styleClass | - |
| Similar Attributes | ||
| Unique Attributes | ||
| focus | - | - |
| onBlur | - | - |
| onClick | - | - |
| onDblClick | - | - |
| onFocus | - | - |
| onKeyDown | - | - |
| onKeyPress | - | - |
| onKeyUp | - | - |
| onLoad | - | - |
| onMouseDown | - | - |
| onMouseMove | - | - |
| onMouseOut | - | - |
| onMouseOver | - | - |
| onMouseUp | - | - |
| onUnload | - | - |
| preserveFocus | - | - |
| preserveScroll | - | - |
| visible | - | - |
| - | alink | - |
| - | bgcolor | - |
| - | link | - |
| - | text | - |
| - | vlink | - |
<webuijsf:body>
<webuijsf:form id="form1">
<webuijsf:textField id="textTest" required="true" text="#{FieldTest.test1}"/>
<webuijsf:button id="fieldButton2" text="Submit"/>
</webuijsf:form>
</webuijsf:body>
<ice:outputBody>
<ice:form id="form1">
<ice:inputText id="textTest" required="true" value="#{FieldTest.test1}"/>
<ice:commandButton id="fieldButton2" value="Submit"/>
</ice:form>
</ice:outputBody>