up vote 2 down vote favorite
2
share [g+] share [fb]

I have a local SQLite database that contains a tree (as Nested Sets). In an AIR application, I want to display that tree in a tree control and provide means to change the nodes' names and copy, move, add or delete nodes.

Now, I'm hiccupping a little on where to put which code. Obviously, I have a class which will perform operations like load / update / insert / delete against the database. This would load the whole tree into some storage variable and save changes made by the user back to the db.

Should this class be the dataProvider, the dataDescriptor or an extension of the Tree control itself? And when the user requests an operation like adding a node, should that update the dataProvider and let the database handler react on an event, or should it call the database handler's method and then update the dataProvider? I'd say that the latter is better, because it's easier to not update the Tree's data if something goes wrong with the db query.

There's methods to add and remove nodes in the DefaultDataDescriptor and in the Tree class (protected methods in the latter), should I use / extend those or ignore them?

The reason I'm confused about this is that, according to the docs, a Tree control uses the object stored in its 'dataDescriptor' property to parse and manipulate the actual data which is stored inside its 'dataProvider' property.

This seems to make sense, until you realize that unless you subclass it, it's never the Tree control that manipulates data (with the exception of drag&drop, if that's enabled), and it's not the dataDescriptor, either. Rather, in all examples, manipulating data happens directly via the dataProvider object and that triggers event handlers in the Tree control.

What is it I don't get here?

link|improve this question

feedback

2 Answers

Take a look at mx.controls.treeClasses.HierarchicalCollectionView. It is not part of the public API, but its full source is available as part of Flex. The Tree controller uses this class internally to handle various data sources.

link|improve this answer
Why the heck isn't that class part of the public API? I am having very similar confusion. – Jason Boyd Sep 21 '11 at 12:38
feedback

I have a very similar issue. I need to load a large tree dynamically from the network. I want the loaded data to be in a logical structure supporting the needs of the application, not some structure designed to support the Tree component specifically, so I just want to create some sort of adapter.

It would seem from Adobe's docs that I'd want to make my existing class the dataProvider and provide my own DataDescriptor class, but any way I approach this seems unreasonably complex, making be wonder if I'm missing something obvious about the intended use of Tree components.

For instance, the loaded data is stored in Vector.{Foo}s, with each nested level having a different type, but all the classes to support heirarchical controls in Flex pass around arrays, not Vectors. Because Vectors and Arrays are not interchangeable, this means any adapter will have to convert one to the other. But if I do this, how can I support dynamic updating with significant amount of data, adding nodes to my Vector-based structure and updating a Tree efficiently?

Another question: how can an adapter descriptor notify the view of changes on added/updated nodes if the underlying data structure, using Vectors, is not designed to dispatch any sort of change events?

It seems there is no way to use a Tree to display data that is not specifically structured for the component.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.