Hi there,
I am developing a tree component which can take several classes as
nodes. Each class should have it's own body, stored in parameters - and
then rendered, of course.
Now, lets say I have I have this code in my Test.tml:
--------------------------------------------------------------------------
<t:ExTree t:id="taskTree" source="treeNodes" currentNode="currentTreeNode">
<t:parameter name="taskClassContent">
<t:pagelink t:page="Task"
context="${ognl:currentTreeNode.id}">${ognl:currentTreeNode.title}</t:pagelink>
</t:parameter>
<t:parameter name="projectClassContent">
<t:pagelink t:page="Project"
context="${ognl:currentTreeNode.id}">${ognl:currentTreeNode.projectName}</t:pagelink>
</t:parameter>
</t:ExTree>
--------------------------------------------------------------------------
As you can see, taskClassContent and projectClassContent are Block elements.
Now how can I render this Block element in my ExTree component? By the
way, ExTree hasn't a template, just a class.
Hope that someone can help me,
Tobias
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]