Documentation

Search 

Contents

  1. Introduction
  2. Getting Started
  3. ICEfaces Concepts
  4. Code View Support
  5. Design View Support
  6. Tag Object Toolbars
  7. Server Behaviors
  8. Property Inspectors
Selected 9. ICEfaces Tag Reference

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

Rendered ice:column tag

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.