10. ICEfaces Tag Reference
Contents > ICEfaces Tag Reference > ice:column
ice:column |
|
The ice:column tag displays row and column information from a backing bean DataModel in a table format. This tag can be used in the same way as h:column.
Example
<ice:dataTable value="#{backingBean.carList}" var="car" width="500">
<ice:column>
<f:facet name="header">
<ice:outputText value="Make" />
</f:facet>
<ice:outputText value="#{car.make}" />
</ice:column>
<ice:column>
<f:facet name="header">
<ice:outputText value="Model" />
</f:facet>
<ice:outputText value="#{car.model}" />
</ice:column>
</ice:dataTable>
Rendered Output
|
Tag Attributes
| binding |
Expression |
| |
| The value-binding expression linking this component tag to a backing bean property. |
| id |
Text |
| |
| The unique identifier value for this component. The value must be unique within the closest naming container. |
| rendered |
Boolean |
| |
| A value-binding expression that evaluates to a Boolean condition indicating if this component should be rendered.
|
|