Suppose I have table like:
mytree(id, parentid, ....)
It contains tree data with parent-child relationship. I want to maintain this data. There are 2 solutions:
Use treeview to load data from mytree table.
Use datawindow to populate data.
I want to UI can display data like treeview. Is it possible to use datawindow with trewview to allow user to maintain the data(add, delete, update)?
the treelevel is dynamic, could be any level. not only 2 level tree.
What's the best solution for this case?