Hi,
I am a newbie on Apache trinidad and JSF. I am not very clear as to how to
create a Tree hierarchy using trinidad.
>From Apache Trinidad developer guide, I am able to get that, a Tree can be
rendered on the browser using the following snippet
<tr:treeTable var="node" value="#{myBean.orgChart.root}">
<f:facet name="nodeStamp">
<tr:column>
<f:facet name="header">
<tr: outputText value="Employee Name"/>
</f:facet>
<tr: outputText value="#{node.ename}"/>
</tr:column>
</f:facet>
<tr:column>
<f:facet name="header">
<tr: outputText value="Employee Id"/>
</f:facet>
<tr: outputText value="#{node.empid}"/>
</tr:column>
<tr:column>
<f:facet name="header">
<tr: outputText value="Department"/>
</f:facet>
<tr: outputText value="#{node.dname}"/>
</tr:column>
</tr:treeTable>
Also I am not sure how to create a Managed bean for the same, which is
referred as "myBean.orgChart.root".
Could someone please let me know how to proceed.
Regards,
Guru
Marcos Sousa wrote:
>
> Hello,
>
> I'm using trinidad tree component and I want to show images to expand tree
> nodes like in Demo
> http://www.irian.at/trinidad-demo/faces/components/tree.jspx. How can I
> do
> this? Now it is rendering triangles right and down.
>
> Ps: I using Trinidad 1.2.1.
>
> Thanks,
>
> --
> Marcos Sousa
> www.marcossousa.com Enjoy it!
>
>
--
View this message in context:
http://www.nabble.com/How-to-show-tp23642841p24950167.html
Sent from the MyFaces - Users mailing list archive at Nabble.com.