| Attributes |
| Name | Required | Request-time | Type | Description |
| binding | no | true | javax.el.ValueExpression | Using an EL expression, bind the component reference to a bean property, so that the component may be accessed in the bean. |
| converter | no | true | javax.faces.convert.Converter | Converter instance registered with this component (Only applicable to date columns, must extend DateTimeConverter). |
| escape | no | true | boolean | Flag indicating that characters that are sensitive in HTML and XML markup must be escaped. Default = 'true'. |
| footerText | no | true | java.lang.String | Define the text to render in the footer of this column. |
| headerText | no | true | java.lang.String | Define the text to render in the header of this column. |
| id | no | true | java.lang.String | The component identifier for this component. This value must be unique within the closest parent component that is a naming container. |
| rendered | no | true | boolean | Return true if this component (and its children) should be rendered during the Render Response phase of the request processing lifecycle. Default = 'true'. |
| sortable | no | true | boolean | Define if the column is sortable. Default = 'true'. |
| styleClass | no | true | java.lang.String | Sets the CSS class to apply to this component. |
| type | no | true | org.icefaces.mobi.component.dataview.ColumnType | Define the ColumnType of this column, determining how the 'value' attribute of this component will be rendered. Valid options include : text, bool, date, image. Text will render the String representation of the value object. Bool assumes the value object is a boolean type and renders a checkbox icon. Date assumes the value object is a Date object and renders according to the required f:convertDateTime child component. Image assume the value is a representation of an image URL. Default = 'org.icefaces.mobi.component.dataview.ColumnType.text'. |
| value | no | true | java.lang.Object | Define a ValueExpression whose resulting Object will be iteratively rendered in the table region of the DataView according to the 'type' of this column. |