[Zope] DTML Tree question...

Antonio Schifano a.schifano@tiscalinet.it
Tue, 09 May 2000 01:27:49 +0200


Hi all,

I would like to use dtml-tree for representing the data stored in a
database table, which inherently has a tree hierarchy. Just to be clear,
imagine a table in which each row has a 'pointer' to the father row,
like in the following example:

ID   |  FATHER  |  Rest-of-data
-----+----------+----------------
0    |    -     | ...
-----+----------+----------------
1    |    0     | ...
-----+----------+----------------
2    |    0     | ...
-----+----------+----------------
3    |    1     | ...
-----+----------+----------------

and so on...

Unfortunately I haven't figured out (yet!) the wizardries needed to make
this work.
Any suggestions/pointers?

Thank you!

    Antonio Schifano