I have added a C1WebTreeView Control to a .ASCX contol. I'm able to add some itmes in the load event just fine. The problem I'm having is that I would like the tree to create itself dynamically when I click on the main items. So I've put code in the ItemPopulate sub as soon in the examples but it never gets fired. What would casue this?
-Tom
Code:
Session(
LoadResources(thePath)
Private
rc.ReadPath(thePath)
itm =
itm.PopulateOnDemand =
itm.Text = ri.DisplayName
itm.CommandArgument = ri.FullName
ItemToLoad.ChildGroup.Items.Add(itm)
LoadResources(e.CommandArgument, e.Item)