Hi
My ultratree is bind to a datasource. Ultratree is populating the nodes correctly.
Now I want to add few more nodes to the existing nodes. Can anyone please help me to solve the problem.
Thanks in advance.
Navi
As I stated originally, you have to add rows to the data source.
Example:DataSet ds = this.ultraTree1.DataSource as DataSet;DataTable tb = ds.Tables["Whatever"];tb.Rows.Add( new object[{ blah, blah, blah } );
Hi Brain
When i add nodes to the control, I am getting an exception saying "Cannot add to a bound nodes collection."
How to overcome this problem
Regards
You have to add rows to the data source. The control listens for this and adds new nodes as required.