Basetree
You can subclass basetree to build a tree control with your own look and feel. Basetree has two content areas: item and children. The item view is where the visual component of the tree should be placed. Any view that you want to place in the tree node should be placed in item. You can use placement="item". The children view is the defaultplacement for basetree.
An http dataset may have arguments into it. You may want to set this at run time. How is this done.
Satya - Friday, April 29, 2005 8:47:08 AM
How can I instantiate a new xml node
A node requires a name, text, and attributes. What is the syntax. Especially the attributes.
Satya - Friday, April 29, 2005 8:48:09 AM
What is a dictionary object?
Apparently when instantiating a node you will need a dictionary object for its attributes. There doesn't seem to be docs on this. Check the forum for it.
Satya - Friday, April 29, 2005 8:55:55 AM
How can I copy a set of nodes from one tree to another xml tree
Apparently this is done through duplicating a data pointer and doing an addnode using that data pointer. But if you have a whole data set to add you may have to walk through each child node and add it to them. See if you can write a utility function to do this.
Satya - Friday, April 29, 2005 8:56:47 AM
How can I refresh a tree
After I update a tree data, how can I tell the tree to refresh itself with the new nodes?