Hi Guys,
This is possibly the dumbest question in the world... I have a class populated with data, lets say for simplification...
public class MyNodes{ public ArrayList Children; public String NodeName;}
How would I use this as a DataSource for UltraWebTree?
In answer to my own question...
Use the _NodeExpanded event... and add nodes as such:-
foreach( MyNode n in MyNodes ){ Node ultraNode = new Node(); ultraNode.Text = n.NodeName; // Where "MyKey" can be used to retrieve sub-nodes ultraNode.DataKey = n.MyKey; ultraNode.ShowExpand = true; e.Node.Nodes.Add(ultraNode);}