I am building a tree from a list.
And the tree is not showing the expand button. (.rtPlus)
How can I force the tree to show the expand button? (I will load children on demand)
tree.DataValueField = "ID";tree.DataTextField = "Name";tree.DataSource = list; // list = new List<Person>(); // class Person { ID; Name; }tree.DataBind();And the tree is not showing the expand button. (.rtPlus)
How can I force the tree to show the expand button? (I will load children on demand)