Re: Python treeview and recursion: help needed

2008-05-23 Thread Mailing List SVR
Il giorno ven, 23/05/2008 alle 09.20 +0200, Mailing List SVR ha scritto: > Hi, > > I have a database with the following structure: > > idname sublevel > > for example > > 1 Node1 None > 2 Node2 1 > 3 Node3 2 > 4 Node4 None > 5 Node5 1 > 6 Node6

Python treeview and recursion: help needed

2008-05-23 Thread Mailing List SVR
Hi, I have a database with the following structure: idname sublevel for example 1 Node1 None 2 Node2 1 3 Node3 2 4 Node4 None 5 Node5 1 6 Node6 5 where Node1 and Node4 are treeview's master nodes, Node2 is a subnode of Node1, No