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 Classjavax.faces.webapp.FacetTag
TagExtraInfo ClassNone
Body Contenttagdependent
Display NameTree Table Column

Attributes
NameRequiredRequest-timeTypeDescription
headerfalsefalsejava.lang.StringThe header title for the column
styleClassHeaderfalsefalsejava.lang.StringPassed through to styleClass attribute of header ice:outputText component
styleHeaderfalsefalsejava.lang.StringPassed through to style attribute of header ice:outputText component
nospanHeaderfalsefalsejava.lang.StringPassed through to nospan attribute of header ice:outputText component
escapeHeaderfalsefalsejava.lang.StringPassed through to escape attribute of header ice:outputText component
effectContainerfalsefalsecom.icesoft.faces.context.effects.EffectPassed through to effect attribute on ice:panelGroup component containing content
styleClassContainerfalsefalsejava.lang.StringPassed 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.