ICEfaces EE Composite Components
Tag treeTableColumn
The treeTableColumn Composite Component renders a column in the treeTable
Example:
<ice-cc:treeTable bean="#{treeTableExampleBean.treeTable}" columnWidths="100px,80px,60px,50px,120px,6S0px,80px" levelColors="#FFE900,#FFF04F,#FFF79F,#FFFCDF"> <ice-cc:treeTableColumn header="Organization"> <ice:outputText value="#{row.data}" rendered="#{row.level eq 0}"/> </ice-cc:treeTableColumn> <ice-cc:treeTableColumn header="Region"> <ice:outputText value="#{row.data}" rendered="#{row.level eq 1}"/> </ice-cc:treeTableColumn> <ice-cc:treeTableColumn header="City"> <ice:outputText value="#{row.data}" rendered="#{row.level eq 2}"/> </ice-cc:treeTableColumn> <ice-cc:treeTableColumn header="Name"> <ice:outputText value="#{row.data}" rendered="#{row.data.class.simpleName eq 'Employee'}"/> </ice-cc:treeTableColumn> <ice-cc:treeTableColumn header="Phone"> <ice:outputText value="#{row.data.phone}" rendered="#{row.data.class.simpleName eq 'Employee'}"/> </ice-cc:treeTableColumn> <ice-cc:treeTableColumn header="Born"> <ice:outputText value="#{row.data.birthDate}" rendered="#{row.data.class.simpleName eq 'Employee'}"> <f:convertDateTime dateStyle="medium"/> </ice:outputText> </ice-cc:treeTableColumn> </ice-cc:treeTable>
| Tag Information |
| Tag Class | javax.faces.webapp.FacetTag |
| TagExtraInfo Class | None |
| Body Content | tagdependent |
| Display Name | Tree Table Column |
| Attributes |
| Name | Required | Request-time | Type | Description |
| header | false | false | java.lang.String | The header title for the column |
| styleClassHeader | false | false | java.lang.String | Passed through to styleClass attribute of header ice:outputText component |
| styleHeader | false | false | java.lang.String | Passed through to style attribute of header ice:outputText component |
| nospanHeader | false | false | java.lang.String | Passed through to nospan attribute of header ice:outputText component |
| escapeHeader | false | false | java.lang.String | Passed through to escape attribute of header ice:outputText component |
| effectContainer | false | false | com.icesoft.faces.context.effects.Effect | Passed through to effect attribute on ice:panelGroup component containing content |
| styleClassContainer | false | false | java.lang.String | Passed through to styleClass attribute on ice:panelGroup component containing content |
| Variables |
No Variables Defined. |
Output Generated by
Tag Library Documentation Generator.
Java, JSP, and JavaServer Pages are trademarks or
registered trademarks of Sun Microsystems, Inc. in the US and other
countries. Copyright 2002-4 Sun Microsystems, Inc.
4150 Network Circle
Santa Clara, CA 95054, U.S.A.
All Rights Reserved.