T:Tree with t:columns
Hi,I tried to use t:columns within a t:tree. But I get an error message, that it's not possible. But I need this feature, is there a work around for this?
[169 byte] By [
CH.Sanixa] at [2007-11-27 7:02:13]

# 2
Well you can, the code below is working:
<t:tree value="#{QualityMatrixBean.treeTableModel}" var="treeItem" expandRoot="true">
<t:treeColumn>
<t:outputText value="#{treeItem}"></t:outputText>
</t:treeColumn>
<t:column>
<t:outputText value="bla"></t:outputText>
</t:column>
</t:tree>
# 9
Yes, since I use there t:column and not t:columns. Unfortunately there is no binding attribut for t:tree. Only for t:tree2, which is working differently.