[Zope] namespace tree-tags
Dieter Maurer
dieter@handshake.de
Mon, 29 Apr 2002 22:27:13 +0200
Nico Niepraschk writes:
> <dtml-with ...>
> <dtml-tree branches=objectValues>
>
> </dtml-tree>
> </dtml-with>
>
> ... doesn't work. Have anybody an idea ?
What do you want to achieve?
I am sure, it will work in the sense that you can access the
"with" attributes inside the tree content.
It does not have the effect to change the trees root.
You would use
<dtml-let root=...>
<dtml-tree root ...>
...
</dtml-tree>
</dtml-let>
for that.
Dieter